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: 20b2d9eea62831f6ce634d7c586fafb22dd04ee7 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0571-2.cs: `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());
        }
}