BaseEncoding Constructor (String, Boolean) | CryptSharp |
Defines a binary-to-text encoding.
Namespace: CryptSharp.Utility
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public BaseEncoding( string characterSet, bool msbComesFirst )
Public Sub New ( characterSet As String, msbComesFirst As Boolean )
public: BaseEncoding( String^ characterSet, bool msbComesFirst )
new : characterSet : string * msbComesFirst : bool -> BaseEncoding
Parameters
- characterSet
- Type: SystemString
The characters of the encoding. - msbComesFirst
- Type: SystemBoolean
true to begin with the most-significant bit of each byte. Otherwise, the encoding begins with the least-significant bit.
See Also