Method Append
| Improve this Doc View SourceAppend(Boolean)
Appends Boolean value.
Declaration
public IndentedStringBuilder Append(bool value)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Byte)
Appends Byte value.
Declaration
public IndentedStringBuilder Append(byte value)
Parameters
Type | Name | Description |
---|---|---|
System.Byte | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Char)
Appends Char value.
Declaration
public IndentedStringBuilder Append(char value)
Parameters
Type | Name | Description |
---|---|---|
System.Char | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Char[])
Appends array of Char value.
Declaration
public IndentedStringBuilder Append(char[] value)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Decimal)
Appends Decimal value.
Declaration
public IndentedStringBuilder Append(decimal value)
Parameters
Type | Name | Description |
---|---|---|
System.Decimal | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Double)
Appends Double value.
Declaration
public IndentedStringBuilder Append(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Int32)
Appends Int32 value.
Declaration
public IndentedStringBuilder Append(int value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Int16)
Appends Int16 value.
Declaration
public IndentedStringBuilder Append(short value)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Int64)
Appends Int64 value.
Declaration
public IndentedStringBuilder Append(long value)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Object)
Appends Object value.
Declaration
public IndentedStringBuilder Append(object value)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(SByte)
Appends SByte value.
Declaration
public IndentedStringBuilder Append(sbyte value)
Parameters
Type | Name | Description |
---|---|---|
System.SByte | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Single)
Appends Single value.
Declaration
public IndentedStringBuilder Append(float value)
Parameters
Type | Name | Description |
---|---|---|
System.Single | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(String)
Appends String value.
Declaration
public IndentedStringBuilder Append(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(UInt16)
Appends UInt16 value.
Declaration
public IndentedStringBuilder Append(ushort value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(UInt32)
Appends Unit32 value.
Declaration
public IndentedStringBuilder Append(uint value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(UInt64)
Appends UInt64 value.
Declaration
public IndentedStringBuilder Append(ulong value)
Parameters
Type | Name | Description |
---|---|---|
System.UInt64 | value | The value. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Char, Int32)
Appends repeated Char value.
Declaration
public IndentedStringBuilder Append(char value, int repeatCount)
Parameters
Type | Name | Description |
---|---|---|
System.Char | value | The value. |
System.Int32 | repeatCount | Count of chars to prepeat. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(Char[], Int32, Int32)
Appends part of Char array value.
Declaration
public IndentedStringBuilder Append(char[] value, int startIndex, int charCount)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | value | The value. |
System.Int32 | startIndex | The start index in char array. |
System.Int32 | charCount | Count of chars. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |
Append(String, Int32, Int32)
Appends part of string value.
Declaration
public IndentedStringBuilder Append(string value, int startIndex, int count)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The value. |
System.Int32 | startIndex | The start index in the string. |
System.Int32 | count | Count of chars. |
Returns
Type | Description |
---|---|
IndentedStringBuilder | This IndentedStringBuilder for fluent coding. |