[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0023-24.cs
blobea8fa10c97433e763344901f4749262926a867be
1 // CS0023: The `?' operator cannot be applied to operand of type `int'
2 // Line: 9
4 public class C
6 static void Main()
8 string s = null;
9 var x = s?.Length?.ToString ();