Exemple #1
0
 public static void Main(string[] args)
 {
     Student student = new Student();
     // Set the name by accessing it directly.
     Console.WriteLine("The first time:");
     student.name = "Madeleine";
     OutputName(student);
     // Change the name using a method.
     Console.WriteLine("After being modified:");
     SetName(student, "Willa");
     OutputName(student);
     // Wait for user to acknowledge.
     Console.WriteLine("Press Enter to terminate...");
     Console.Read();
 }
 // SetName - Modify the student object's name.
 public static void SetName(Student student, string name)
 {
   student.name = name;
 }
 // OutputName - Output the student's name.
 public static void OutputName(Student student)
 {
   // Output current student's name.
   Console.WriteLine("Student's name is {0}", student.name);
 }