Hello good morning, here is my brief code, thank you.
C#:
amespace Example1
{
class Program
{
static void Main(string[] args)
{
private int age;
private float salary;
private string name;
Person p1 = new Person();
p1.setAge(20);
Console.WriteLine("the person's age is" + p1.getAge());
Console.ReadKey();
Bottle b1 = new Bottle();
b1.Capacity = 200;
Console.WriteLine("the bottle has a capacity " + b1.Capacity());
Console.ReadKey();