Axiom.Math.Collections.Vector3List.ReadOnlyVector3List.Insert C# (CSharp) Method

Insert() public method

public Insert ( int pos, Vector3 x ) : void
pos int
x Vector3
return void
            public override void Insert( int pos, Vector3 x )
            {
                throw new NotSupportedException( "This is a Read Only Collection and can not be modified" );
            }