24
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
Student std = new Student() { StudentID = 1,
8
StudentName = "Bill",
9
Age = 20,
10
Address = "New York"
11
};
12
13
Console.WriteLine(std.StudentName);
14
}
15
}
16
17
public class Student
18
{
19
public int StudentID { get; set; }
20
public string StudentName { get; set; }
21
public int Age { get; set; }
22
public string Address { get; set; }
23
24
}
Cached Result