ICSharpCode.NRefactory.Ast.PropertyDeclaration.PropertyDeclaration C# (CSharp) Method

PropertyDeclaration() public method

public PropertyDeclaration ( Modifiers modifier, List attributes, string name, List parameters ) : System
modifier Modifiers
attributes List
name string
parameters List
return System
        public PropertyDeclaration(Modifiers modifier, List<AttributeSection> attributes, string name, List<ParameterDeclarationExpression> parameters)
        {
            Modifier = modifier;
            Attributes = attributes;
            Name = name;
            Parameters = parameters;
            bodyStart = Location.Empty;
            bodyEnd = Location.Empty;
            getRegion = PropertyGetRegion.Null;
            setRegion = PropertySetRegion.Null;
        }

Same methods

PropertyDeclaration::PropertyDeclaration ( string name, ICSharpCode.NRefactory.Ast.TypeReference typeReference, Modifiers modifier, List attributes ) : System