Axiom.Math.Collections.BaseCollection.Add C# (CSharp) Method

Add() protected method

Adds an item to the collection.
protected Add ( object item ) : void
item object
return void
        protected void Add( object item )
        {
            objectList.Add( item );
        }