C
CSharper
I know you can now define something like the follwing
public string Name{set; get;}
during compiling it will create requested information along with the
private varaible to work with. Here is my question; I have a class
called Person and I want to get the values but not setting the value.
public class Person myPerson;
public Person LocalPerson
{
}
in the main window
....
myPerson = new Person
public string Name{set; get;}
during compiling it will create requested information along with the
private varaible to work with. Here is my question; I have a class
called Person and I want to get the values but not setting the value.
public class Person myPerson;
public Person LocalPerson
{
}
in the main window
....
myPerson = new Person