[]
A boolean value stored on 4 bytes (instead of 1 in .NET).
public struct Bool : IEquatable<Bool>
Name | Description |
---|---|
Bool(bool) | Initializes a new instance of the Bool class. |
Name | Description |
---|---|
False | The boolean False value. |
SizeInBytes | The size of the Bool type, in bytes. |
True | The boolean True value. |
Name | Description |
---|---|
Value | Gets or sets the boolean value. |
Name | Description |
---|---|
Equals(Bool) | Indicates whether this instance and a specified object are equal. |
Equals(object) | Indicates whether this instance and a specified object are equal. |
GetHashCode() | Returns a hash code for this instance. |
ToString() | Returns a string that represents the current object. |
Name | Description |
---|---|
operator ==(Bool, Bool) | Determines if the specified values are equal. |
implicit operator bool(Bool) | |
implicit operator Bool(bool) | |
operator !=(Bool, Bool) | Determines if the specified values are not equal. |