System.Reflection.Tests.PropertyInfoTests.BaseClass.this C# (CSharp) Method

this() public method

public this ( int Index ) : string
Index int
return string
            public string this[int Index]
            {
                get { return _stringArray[Index]; }
                set { _stringArray[Index] = value; }
            }
PropertyInfoTests.BaseClass