System.Xml.Schema.XmlSchemaObjectCollection.Add C# (CSharp) Méthode

Add() public méthode

public Add ( XmlSchemaObject item ) : int
item XmlSchemaObject
Résultat int
        public int Add(XmlSchemaObject item) {
            return List.Add(item);
        }
        

Same methods

XmlSchemaObjectCollection::Add ( XmlSchemaObjectCollection collToAdd ) : void

Usage Example

        internal XmlSchemaObjectCollection Clone()
        {
            XmlSchemaObjectCollection objects = new XmlSchemaObjectCollection();

            objects.Add(this);
            return(objects);
        }
All Usage Examples Of System.Xml.Schema.XmlSchemaObjectCollection::Add