blob: 0891786c3e8d6d63191895cb2d7c56474b026f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1644: Feature `null propagating operator' cannot be used because it is not part of the C# 5.0 language specification
// Line: 10
// Compiler options: -langversion:5
class C
{
static void Main ()
{
object o = null;
string s = o?.ToString ();
}
}
|