Files
linux-packaging-mono/mcs/errors/cs0200-6.cs

13 lines
162 B
C#
Raw Normal View History

// CS0200: Property or indexer `C.P' cannot be assigned to (it is read-only)
// Line: 10
class C
{
public int P { get; }
public void Foo ()
{
P = 10;
}
}