wwNameValueCollection::FastAdd

Similar to the Add method this method allows adding an item to the collection. Unlike Add() though this method will not check if a key of the same name exists and simply add it. This means it's possible to insert duplicate keys.

Be careful with this method and only call it if you know for sure there will be no key duplication or you're not accessing the items by key value.

o.FastAdd(Key,Value)

Parameters

Key
The string key of the item to add.

If this is the only parameter this parameter becomes the value.

Value
The value of the item to store in the collection.


See also:

Class wwNameValueCollection

© West Wind Technologies, 1996-2022 • Updated: 04/04/17
Comment or report problem with topic