Files
linux-packaging-mono/mcs/errors/cs0200-7.cs
Xamarin Public Jenkins 6992685b86 Imported Upstream version 4.2.0.179
Former-commit-id: 0a113cb3a6feb7873f632839b1307cc6033cd595
2015-11-10 14:54:39 +00:00

14 lines
214 B
C#

// 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);
}
}