Class representing a Base36 number
| C# |
public struct Base36
| All Members | Constructors | Methods | Properties | Fields | |
| Icon | Member | Description |
|---|---|---|
| Base36(Int64) |
Instantiate a Base36 number from a long value
| |
| Base36(String) |
Instantiate a Base36 number from a Base36 string
| |
| Addition(Base36, Base36) |
Operator overload
| |
| Base36ToNumber(String) |
Static method to convert a Base36 string to a long integer (base-10)
| |
| Decrement(Base36) |
Operator overload
| |
| Division(Base36, Base36) |
Operator overload
| |
| Equality(Base36, Base36) |
Operator overload
| |
| Equals(Object) |
Determines if an object has the same value as the instance
(Overrides ValueType.Equals(Object).) | |
| Explicit(Base36) |
Converts type Base36 to a string; must be explicit, since
Base36 > string is dangerous!
| |
| Finalize()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
| GetHashCode()()() |
A unique value representing the value of the number
(Overrides ValueType.GetHashCode()()().) | |
| GetType()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
| GreaterThan(Base36, Base36) |
Operator overload
| |
| GreaterThanOrEqual(Base36, Base36) |
Operator overload
| |
| Implicit(Base36) |
Converts type Base36 to a base-10 long
| |
| Implicit(Base36) |
Converts type Base36 to a base-10 integer
| |
| Implicit(Base36) |
Converts type Base36 to a base-10 short
| |
| Implicit(Int64) |
Converts a long (base-10) to a Base36 type
| |
| Implicit(String) |
Converts a string to a Base36
| |
| Increment(Base36) |
Operator overload
| |
| Inequality(Base36, Base36) |
Operator overload
| |
| LessThan(Base36, Base36) |
Operator overload
| |
| LessThanOrEqual(Base36, Base36) |
Operator overload
| |
| MaxValue |
Base36 containing the maximum supported value for this type
| |
| MemberwiseClone()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
| MinValue |
Base36 containing the minimum supported value for this type
| |
| Modulus(Base36, Base36) |
Operator overload
| |
| Multiply(Base36, Base36) |
Operator overload
| |
| NumberToBase36(Int64) |
Public static method to convert a long integer (base-10) to a Base36 number
| |
| NumericValue |
Get or set the value of the type using a base-10 long integer
| |
| Subtraction(Base36, Base36) |
Operator overload
| |
| ToString()()() |
Returns a string representation of the Base36 number
(Overrides ValueType.ToString()()().) | |
| ToString(Int32) |
Returns a string representation padding the leading edge with
zeros if necessary to make up the number of characters
| |
| Value |
Get or set the value of the type using a Base36 string
|