System.Xml.Schema.XmlSchemaObjectCollection.Add C# (CSharp) Method

Add() public method

public Add ( XmlSchemaObject item ) : int
item XmlSchemaObject
return 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