System.Reflection.Tests.PropertyInfoTests.CustomIndexerNameClass.this C# (CSharp) Метод

this() приватный Метод

private this ( int index, string s ) : object[]
index int
s string
Результат object[]
            public object[] this[int index, string s]
            {
                get { return _objectArray; }
                set { _objectArray = value; }
            }
        }
PropertyInfoTests.CustomIndexerNameClass