Class BitArrayHelpers
Extension method class to make it easier to work with BitArray instances
Inherited Members
Namespace: Akka.Util
Assembly: Akka.dll
Syntax
public static class BitArrayHelpers
Methods
| Edit this page View SourceToBytes(BitArray)
Declaration
public static byte[] ToBytes(this BitArray arr)
Parameters
| Type | Name | Description |
|---|---|---|
| BitArray | arr | The BitArray to convert to bytes. |
Returns
| Type | Description |
|---|---|
| byte[] | A byte array containing the bits from the BitArray. |
Exceptions
| Type | Condition |
|---|---|
| ArgumentException | This exception is thrown if there aren't enough bits in the given |
Edit this page