BTreeBaseKey, ValueAddWithComparisonArray Method |
Adds an element to the set and returns a value that indicates if it was successfully added
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public bool AddWithComparisonArray(
Key key,
byte[] comparisonArrayIn
)
Public Function AddWithComparisonArray (
key As Key,
comparisonArrayIn As Byte()
) As Boolean
public:
bool AddWithComparisonArray(
Key key,
array<unsigned char>^ comparisonArrayIn
)
member AddWithComparisonArray :
key : 'Key *
comparisonArrayIn : byte[] -> bool
Parameters
- key
- Type: Key
[Missing <param name="key"/> documentation for "M:VelocityDb.Collection.BTree.BTreeBase`2.AddWithComparisonArray(`0,System.Byte[])"]
- comparisonArrayIn
- Type: SystemByte
[Missing <param name="comparisonArrayIn"/> documentation for "M:VelocityDb.Collection.BTree.BTreeBase`2.AddWithComparisonArray(`0,System.Byte[])"]
Return Value
Type:
Booleantrue if an element was added; otherwise,
false.
See Also