Help for this page

Select Code to Download


  1. or download this
    int i = 5;
    System.Int32 i = 5;
    
  2. or download this
    MyType i = (MyType) c.get(5);
    
  3. or download this
    MyType i = c.Get(5) as MyType;
    
  4. or download this
    foreach (MyType i in c) {
        # do something with i
    }