Boo.Lang.Compiler.Steps.EmitAssembly.PropertyAttributesFor C# (CSharp) 메소드

PropertyAttributesFor() 개인적인 메소드

private PropertyAttributesFor ( Property property ) : PropertyAttributes
property Property
리턴 PropertyAttributes
        PropertyAttributes PropertyAttributesFor(Property property)
        {
            return property.ExplicitInfo != null
                ? PropertyAttributes.SpecialName | PropertyAttributes.RTSpecialName
                : PropertyAttributes.None;
        }
EmitAssembly