The binary representation of a string.
Inheritance Hierarchy Namespace: Demo3D.IOAssembly: Demo3D.IO (in Demo3D.IO.dll) Version: 19.01.00
Syntax[TypeConverterAttribute(typeof(BinaryStringBinaryStringConverter))]
public sealed class BinaryString : IEnumerable,
IComparable<BinaryString>, IComparable<string>, IComparable,
IEquatable<BinaryString>, IEquatable<string>, IConvertible,
ICloneable
The BinaryString type exposes the following members.
Constructors
Properties
Methods| | Name | Description |
|---|
 | Clone |
Creates a new object that is a copy of the current instance.
|
 | CompareTo(BinaryString) |
Compares the current instance with another BinaryString and returns an integer that indicates
whether the current instance precedes, follows, or occurs in the same position in the sort order
as the other object.
|
 | CompareTo(String) |
Compares the current instance with another string and returns an integer that indicates whether
the current instance precedes, follows, or occurs in the same position in alphabetical order.
|
 | Equals(BinaryString) |
Indicates whether the current BinaryString is equal to another string.
|
 | Equals(Object) |
Indicates whether the current BinaryString is equal to another string.
(Overrides ObjectEquals(Object)) |
 | Equals(String) |
Indicates whether the current BinaryString is equal to another string.
|
 | GetHashCode |
The default hash code.
(Overrides ObjectGetHashCode) |
 | ToString |
Returns the current string value.
(Overrides ObjectToString) |
Top
Operators
Fields| | Name | Description |
|---|
  | Empty |
The empty string.
|
Top
Remarks
Like System.String except that it handles strings decoded from binary data.
Handles the case where the binary data includes nulls and control characters.
See Also