J
james
I have a issue in implementing my objetcs.
Say I have class called Account. And I have required field which is
accountname.
public Account(string accountName)
: this()
{
_accountName = accountName;
}
So say within the application I want to change the accountName of the
account object.
Say I have
Account account = new Account("myaccount");
and in some where else in the program I need to change the
accountName.
How can I do that,
Say I have class called Account. And I have required field which is
accountname.
public Account(string accountName)
: this()
{
_accountName = accountName;
}
So say within the application I want to change the accountName of the
account object.
Say I have
Account account = new Account("myaccount");
and in some where else in the program I need to change the
accountName.
How can I do that,