I am working with multi dimensional arrays that can store null values.
I am declaring one of my array as follows :
public Size?[,] CellSize { get; set; }
However when I compile it, StyleCop gives an error SA0102 : CSharp.CsParser : A syntax error has been discovered in file ....
What am I doing wrong?