Mono.CSharp.Property.Property C# (CSharp) Method

Property() public method

public Property ( DeclSpace parent, FullNamedExpression type, Modifiers mod, MemberName name, Attributes attrs ) : IKVM.Reflection
parent DeclSpace
type FullNamedExpression
mod Modifiers
name MemberName
attrs Attributes
return IKVM.Reflection
        public Property(DeclSpace parent, FullNamedExpression type, Modifiers mod,
				 MemberName name, Attributes attrs)
            : base(parent, type, mod,
				parent.PartialContainer.Kind == MemberKind.Interface ? AllowedModifiersInterface :
				parent.PartialContainer.Kind == MemberKind.Struct ? AllowedModifiersStruct :
				AllowedModifiersClass,
				name, attrs)
        {
        }