Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. List<List<RecordItem>> combinedList = new List<List<RecordItem>>();
  2.  
  3. public class RecordItem
  4. {
  5. public string fieldName { get; set; }
  6. public string value { get; set; }
  7. }
  8.  
  9. [0] [0]fieldName = "StudentId", value = "S1"
  10. [1]fieldName = "Maths", value = "90"
  11.  
  12. [1] [0]fieldName = "StudentId", value = "S1"
  13. [1]fieldName = "Science", value = "70"
  14.  
  15. [2] [0]fieldName = "StudentId", value = "S2"
  16. [1]fieldName = "Maths", value = "60"
  17.  
  18. [3] [0]fieldName = "StudentId", value = "S2"
  19. [1]fieldName = "Science", value = "50"
  20.  
  21. [0] [0]fieldName = "StudentId", value = "S1"
  22. [1]fieldName = "Maths", value = "90"
  23. [2]fieldName = "Science", value = "70"
  24.  
  25. [1] [0]fieldName = "StudentId", value = "S2"
  26. [1]fieldName = "Science", value = "60"
  27. [2]fieldName = "Science", value = "50"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement