Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

very basic help please!

$
0
0
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;
}
}
}


Viewing all articles
Browse latest Browse all 2703

Trending Articles