0% found this document useful (0 votes)
15 views1 page

Value and Reference

Uploaded by

Madhuri Patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Value and Reference

Uploaded by

Madhuri Patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

using System;

using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace VALUE_TYPE_REFERENCE_TYPE
{
class Employee
{
public int Salary;
public int Age;
}

class Program
{
static void Main(string[] args)
{
Employee e = new Employee();
e.Salary = 5000;
e.Age = 23;

Employee e1 = e;
Employee e2 = e;

e.Age = 25;
Console.WriteLine(e.Age);
Console.WriteLine(e1.Age);
Console.WriteLine(e2.Age);
Console.ReadLine();

}
}
}

You might also like