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