blob: a5d63729fc6553d0e25c315c0cc1234edbde3abb (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0571: `System.Reflection.MemberInfo.Name.get': cannot explicitly call operator or accessor
// Line: 8
using System;
public class EntryPoint {
public static void Main () {
Type type = typeof(string);
Console.WriteLine (type.get_Name());
}
}
|