Appends the invariant representation of a specified boolean value to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, bool value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 8-bit unsigned integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, byte value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified decimal number to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, decimal value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified double-precision floating-point number to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, double value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified single-precision floating-point number to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, float value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 32-bit signed integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, int value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 64-bit signed integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, long value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 8-bit signed integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, sbyte value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 16-bit signed integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, short value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 32-bit unsigned integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, uint value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 64-bit unsigned integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, ulong value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |
Appends the invariant representation of a specified 16-bit unsigned integer to the end of stringBuilder.
public static StringBuilder AppendInvariant(this StringBuilder stringBuilder, ushort value)
parameter | description |
---|---|
stringBuilder | The StringBuilder instance to which the string representation will be appended. |
value | The value to append. |