Boo.Lang.Compiler.Steps.EmitAssembly.PropertyAttributesFor C# (CSharp) Method

PropertyAttributesFor() private method

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