This illustrates what I am trying to accomplish:
public class GridModel : PropertyChangedBase
{
public List<string> LeftValue { get; set; }
public List<string> LeftValue = new List<string> { "Alpha", "Beta", "Gamma" };
[...]
}
but I am getting an obvious "identifier repeated" error.
Is there a syntax for that? Perhaps with a constant or fixed List?