System.Xml.Schema.KeySequence.this C# (CSharp) Méthode

this() public méthode

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