Boo.Lang.Runtime.RuntimeServices.GetDefaultMemberName C# (CSharp) Метод

GetDefaultMemberName() статический приватный Метод

static private GetDefaultMemberName ( Type type ) : String
type System.Type
Результат String
        internal static String GetDefaultMemberName(Type type)
        {
            var attribute = (DefaultMemberAttribute)Attribute.GetCustomAttribute(type, typeof(DefaultMemberAttribute));
            return attribute != null ? attribute.MemberName : "";
        }
RuntimeServices