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

IndexerDeclaration() public method

public IndexerDeclaration ( Modifiers modifier, List parameters, List attributes ) : System
modifier Modifiers
parameters List
attributes List
return System
        public IndexerDeclaration(Modifiers modifier, List<ParameterDeclarationExpression> parameters, List<AttributeSection> attributes)
        {
            Modifier = modifier;
            Parameters = parameters;
            Attributes = attributes;
            interfaceImplementations = new List<InterfaceImplementation>();
            typeReference = TypeReference.Null;
            bodyStart = Location.Empty;
            bodyEnd = Location.Empty;
            getRegion = PropertyGetRegion.Null;
            setRegion = PropertySetRegion.Null;
        }

Same methods

IndexerDeclaration::IndexerDeclaration ( ICSharpCode.NRefactory.Ast.TypeReference typeReference, List parameters, Modifiers modifier, List attributes ) : System