MixinRefactoring.IndexerProperty.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator
        public IEnumerator<Parameter> GetEnumerator() => _parameters.GetEnumerator();
        public Parameter GetParameter(int index) => _parameters.GetParameter(index);