1 2 3 4 5 6 7 8 9 10 11 12
// CS0200: Property or indexer `C.S' cannot be assigned to (it is read-only) // Line: 10 class C { public static int S { get; } public C () { S = 3; } }