I'm getting a weird error when doing this: (.net 2.0)
public overrides List<String> getSpaceballs
{
get { return new List<String>() { "abc","def","egh" }; }
}
VS is asking for ; after (). Why?
I sure can do this:
public overrides string[] getSpaceballs
{
get { return new string[] { "abc","def","egh" }; }
}