@Aleem_Khan
the example is using a custom class (Student) along with its properties: e.g. StudentID
So it is differing from a simple 2 dimensional list
As the effort to make available a custom student class within a UiPath ( I guess LINQ learning project) is not in balance to its benefit for the learning progress, following can be done as alternate:
working with dictionaries (key can be used similar to property name)
working with tuples
accessing the age: JohnTupleVar.Item3
so a list could look like: List(Of Tuple(of Int32, String, Int32))
new Student() { StudentID = 1, StudentName = "John", Age = 18 } ,
new Student() { StudentID = 2, StudentName = "Steve", Age = 21 } ,
new Student() { StudentID = 3, StudentName = "Bill", Age = 18 } ,
new Student() { StudentID = 4, StudentName = "Ram" , Age = 20 } ,
new Student() { StudentID = 5, StudentName = "Abram" , Age = 21 }
hi peter thank you so much for helping I have doubt how could I store this 3 value in dictionary as I know that dictionary hold two value for I.E key and value I want to store above list in dictionary could you help me how could I do that