DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / 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 } }; }