Boo.Lang.Compiler.Steps.EmitAssembly.PropertyAccessorAttributesFor C# (CSharp) Méthode

PropertyAccessorAttributesFor() private méthode

private PropertyAccessorAttributesFor ( Boo.Lang.Compiler.Ast.TypeMember property ) : MethodAttributes
property Boo.Lang.Compiler.Ast.TypeMember
Résultat MethodAttributes
        MethodAttributes PropertyAccessorAttributesFor(TypeMember property)
        {
            const MethodAttributes defaultPropertyAccessorAttributes = MethodAttributes.SpecialName | MethodAttributes.HideBySig;
            return defaultPropertyAccessorAttributes | MethodAttributesFor(property);
        }
EmitAssembly