System.Reflection.ParameterModifier.this C# (CSharp) Метод

this() публичный Метод

public this ( int index ) : bool
index int
Результат bool
        public bool this[int index] 
        {
            get 
            {
                return _byRef[index]; 
            }
            set 
            {
                _byRef[index] = value;
            }
        }
        #endregion
ParameterModifier