Suppose you have a class Person with Property Name
public class Person
{
public string Name { get; set; }
}
And if you want to read the property anywhere from its object
//Create Object
Person p = new Person();
//Set Property
p.Name = "Mudassar";
//Get Property
string name = p.Name;