DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs0037-9.cs
12345678
// CS0037: Cannot convert null to `int' because it is a value type // Line: 6 class C { int [,] i = new int [2,null] { { 1 }, { 2 } }; }