52
1
using System;
2
using System.Linq;
3
using System.Collections.Generic;
4
5
public class Program
6
{
7
public static void Main()
8
{
9
IList<Student> studentList1 = new List<Student>() {
10
new Student() { StudentID = 1, StudentName = "John" },
11
new Student() { StudentID = 2, StudentName = "Steve" },
12
new Student() { StudentID = 3, StudentName = "Bill" },
13
new Student() { StudentID = 4, StudentName = "Ram" },
14
new Student() { StudentID = 5, StudentName = "Ron" }
15
};
16
17
IList<Student> studentList2 = new List<Student>() {
18
new Student() { StudentID = 1, StudentName = "John" },
19
new Student() { StudentID = 2, StudentName = "Steve" },
20
new Student() { StudentID = 3, StudentName = "Bill" },
21
new Student() { StudentID = 4, StudentName = "Ram" },
22
new Student() { StudentID = 5, StudentName = "Ron" }
23
};
24
Cached Result
Dime tu peso
>