I want to create a class in c#, that contains the instance name in an internal string. For example, the class 'Person':
Person steve = new Person();
and the class will look like that:
class Person
{
private string Name;
}
So the string 'Name' will contain: "steve".
How can I do that? Is that possible?