Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0571-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 551489bee91ae6d2562b726e7d99f28acd19dd01 (plain)
1
2
3
4
5
6
7
8
9
// cs0571.cs: 'System.Reflection.MemberInfo.Name.get' : cannot explicitly call operator or accessor// Line: 9
using System;

public class EntryPoint {
        public static void Main () {
                Type type = typeof(string);
                Console.WriteLine (type.get_Name());
        }
}