System.Xml.Schema.KeySequence.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : object
index int
리턴 object
        public object this[int index] {
            get {
                object result = ks[index];
                return result;
            }
            set {
                ks[index] = (TypedObject) value;
            } 
        }