Npgsql.NpgsqlParameterCollection.Clear C# (CSharp) Method

Clear() public method

Removes all items from the collection.
public Clear ( ) : void
return void
        public override void Clear()
        {
            NpgsqlEventLog.LogMethodEnter(LogLevel.Debug, CLASSNAME, "Clear");
            this.InternalList.Clear();
            this.InvalidateHashLookups();
        }