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