2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0571-2.cs
1 // cs0571.cs: 'System.Reflection.MemberInfo.Name.get' : cannot explicitly call operator or accessor// Line: 9
2 using System;
3
4 public class EntryPoint {
5         public static void Main () {
6                 Type type = typeof(string);
7                 Console.WriteLine (type.get_Name());
8         }
9 }