Boo.Lang.Compiler.Steps.EmitAssembly.PropertyAccessorAttributesFor C# (CSharp) Метод

PropertyAccessorAttributesFor() приватный Метод

private PropertyAccessorAttributesFor ( Boo.Lang.Compiler.Ast.TypeMember property ) : MethodAttributes
property Boo.Lang.Compiler.Ast.TypeMember
Результат MethodAttributes
        MethodAttributes PropertyAccessorAttributesFor(TypeMember property)
        {
            const MethodAttributes defaultPropertyAccessorAttributes = MethodAttributes.SpecialName | MethodAttributes.HideBySig;
            return defaultPropertyAccessorAttributes | MethodAttributesFor(property);
        }
EmitAssembly