The
ValueCollection method creates a new
ValueCollection
object that contains the given byte array values.
Namespace: Microsoft.MetadirectoryServices
Assembly: Microsoft.MetadirectoryServicesEx (in
microsoft.metadirectoryservicesex.dll)
Usage
Visual Basic |
Dim values As Byte()()
Dim returnValue As ValueCollection
returnValue = Utils.ValueCollection(values)
|
Syntax
Visual Basic |
<CLSCompliantAttribute(False)> _
Public Shared Function ValueCollection ( _
values As Byte()() _
) As ValueCollection
|
C# |
[CLSCompliantAttribute(false)]
public static ValueCollection ValueCollection (
byte[][] values
)
|
C++ |
[CLSCompliantAttribute(false)]
public:
static ValueCollection^ ValueCollection (
array<array<unsigned char>^>^ values
)
|
J# |
/** @attribute CLSCompliantAttribute(false) */
public static ValueCollection ValueCollection (
byte[][] values
)
|
JScript |
CLSCompliantAttribute(false)
public static function ValueCollection (
values : byte[][]
) : ValueCollection
|
Parameters
- values
-
Contains an array of byte arrays that will be added to the new
collection.
Return Value
Returns a new
ValueCollection object that contains a copy of
values.
Exceptions
Exception type |
Condition |
System.ArgumentNullException
|
The argument is null.
|
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Target Platforms
See Also