Show / Hide Table of Contents

Method Append

| Improve this Doc View Source

Append(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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
Back to top Copyright © Weifen Luo | DevZest