System::Collections::Specialized Namespace Reference

Classes

class  BitVector32
 Provides a simple light bit vector with easy integer or Boolean access to a 32 bit storage. More...
 
class  NameValueCollection
 Collection of associated String keys and String values that can be accessed either with the key or with the index. More...
 
class  StringCollection
 Indexed list of strings. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More...
 
class  StringCollectionPtr
 Stirng collection poiner with access operator. More...
 
class  StringDictionary
 String to string dictionary. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More...
 

Functions

bool operator== (BitVector32::Section a, BitVector32::Section b)
 Checks if two specified objects are equal. More...
 
bool operator!= (BitVector32::Section a, BitVector32::Section b)
 Checks if two specified objects are not equal. More...
 

Function Documentation

◆ operator!=()

bool System::Collections::Specialized::operator!= ( BitVector32::Section  a,
BitVector32::Section  b 
)

Checks if two specified objects are not equal.

Parameters
a- first object to compare
b- second object to compare
Returns
true if are not equal, otherwise - false.

◆ operator==()

bool System::Collections::Specialized::operator== ( BitVector32::Section  a,
BitVector32::Section  b 
)

Checks if two specified objects are equal.

Parameters
a- first object to compare
b- second object to compare
Returns
true if are equal, otherwise - false.