blob: 3e01495bf82852bfc7420c448a2a52ee479d911e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0200: Property or indexer `MyClass.Type' cannot be assigned to (it is read-only)
// Line: 12
using System;
public class MyClass
{
Type Type { get; }
public void Test ()
{
Type = typeof (string);
}
}
|