System.Reflection.ParameterModifier.this C# (CSharp) Method

this() public method

public this ( int index ) : bool
index int
return bool
        public bool this[int index] 
        {
            get 
            {
                return _byRef[index]; 
            }
            set 
            {
                _byRef[index] = value;
            }
        }
        #endregion
ParameterModifier