Hi all,
I have 2 basic question I really need answering today but am at the point where I can't see the obvious!
. Correct this class.
namespace ExampleApp
{
/// <summary>
/// Correct this class so that it would compile
/// </summary>
public class Customer
{
public string Name { get; set; }
public string Account { get set; }
public string PrefixedAccount
{
get
{
return "P" Account;
}
}
public override string ToString()
{
return Account + " - " + Name;
}
}
}
I have 2 basic question I really need answering today but am at the point where I can't see the obvious!
. Correct this class.
namespace ExampleApp
{
/// <summary>
/// Correct this class so that it would compile
/// </summary>
public class Customer
{
public string Name { get; set; }
public string Account { get set; }
public string PrefixedAccount
{
get
{
return "P" Account;
}
}
public override string ToString()
{
return Account + " - " + Name;
}
}
}