Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. List<myStruct> myList = new List<myStruct> { new myStruct { a = 3 } };
  2. myList[0].a = 5;
  3.  
  4. struct myStruct
  5. {
  6. public double a;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement