In 1 of my classes, I have an property ImageNames
that I want to get and set. I tried adding set
but it doesn't work. How do I make this property settable?
public string[] ImageNames
{
get
{
return new string[] { };
}
//set; doesn't work
}