O
Ole
If I define a class and create a instant of it like e.g.:
UserClass instantName = new UserClass();
how do I then determine the defined name "instantName" in the UserClass e.g.
in a method (or a property) like this:
public void userFunction()
{
string Var = new string();
Var = ???????; // instantName - how to determine this?
}
Thanks
Ole
UserClass instantName = new UserClass();
how do I then determine the defined name "instantName" in the UserClass e.g.
in a method (or a property) like this:
public void userFunction()
{
string Var = new string();
Var = ???????; // instantName - how to determine this?
}
Thanks
Ole