blob: ffde8addb8eb57a9d6d4298de157db83bacf99a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0023: The `?' operator cannot be applied to operand of type `int'
// Line: 11
using System;
class C
{
static void Main()
{
int k = 0;
var r = k?.ToString ();
}
}
|