using System;
public class Program
{
public static void Main(string[] args)
Person Preceous = new Person(); //instantiation of object bob
Preceous.name = "Preceous"; //assignment of values to member field name
Preceous.age = 17; //assignment of values to member field age
Console.WriteLine(Preceous.age);
//WriteLine method outputs 3
}
class Person
public int age;
public string name;