PostSharpAPI ReferencePost­Sharp.​Patterns.​FormattersUnsafe­String­BuilderAppend
Open sandboxFocus

UnsafeStringBuilder.Append Method

Append(Char)

Appends one char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c)
Parameters
Type Name Description
Char c

A char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char, Char)

Appends two char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c1, char c2)
Parameters
Type Name Description
Char c1

A char.

Char c2

A char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char, Char, Char)

Appends three char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c1, char c2, char c3)
Parameters
Type Name Description
Char c1

A char.

Char c2

A char.

Char c3

A char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char, Char, Char, Char)

Appends four char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c1, char c2, char c3, char c4)
Parameters
Type Name Description
Char c1

A char.

Char c2

A char.

Char c3

A char.

Char c4

A char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char, Char, Char, Char, Char)

Appends five char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c1, char c2, char c3, char c4, char c5)
Parameters
Type Name Description
Char c1

A char.

Char c2

A char.

Char c3

A char.

Char c4

A char.

Char c5

A char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char[], Int32, Int32)

Appends an array segment of char to the current UnsafeStringBuilder.

Declaration
public bool Append(char[] c, int offset, int count)
Parameters
Type Name Description
Char[] c

A non-null array of char.

Int32 offset

Index of the first char to be appended.

Int32 count

Number of char to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char*, Int32)

Appends an unmanaged array of char to the current UnsafeStringBuilder.

Declaration
public bool Append(char *c, int count)
Parameters
Type Name Description
Char* c

A non-null pointer to an unmanaged array of char.

Int32 count

Number of char to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char, Int32)

Appends several times the same char to the current UnsafeStringBuilder.

Declaration
public bool Append(char c, int count)
Parameters
Type Name Description
Char c

A char.

Int32 count

The number of times c has to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Char[])

Appends an array of char to the current UnsafeStringBuilder.

Declaration
public bool Append(char[] c)
Parameters
Type Name Description
Char[] c

A non-null array of char.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(String)

Appends a String to the current UnsafeStringBuilder.

Declaration
public bool Append(string str)
Parameters
Type Name Description
String str

A non-null String.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(String, Int32, Int32)

Appends a part of a String to the current UnsafeStringBuilder.

Declaration
public bool Append(string str, int startIndex, int length)
Parameters
Type Name Description
String str

A non-null String

Int32 startIndex

The index of the first character of the string to append.

Int32 length

The number of characters to append.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(in CharSpan)

Appends a CharSpan to the current UnsafeStringBuilder.

Declaration
public bool Append(in CharSpan span)
Parameters
Type Name Description
CharSpan span

A CharSpan.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(UnsafeString)

Appends an UnsafeString to the current UnsafeStringBuilder.

Declaration
public bool Append(UnsafeString s)
Parameters
Type Name Description
UnsafeString s

A non-null UnsafeString.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(UnsafeStringBuilder)

Appends the current value of a UnsafeStringBuilder to the current UnsafeStringBuilder.

Declaration
public bool Append(UnsafeStringBuilder stringBuilder)
Parameters
Type Name Description
UnsafeStringBuilder stringBuilder

A UnsafeStringBuilder.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Byte)

Appends a Byte (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(byte value)
Parameters
Type Name Description
Byte value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(SByte)

Appends an SByte (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(sbyte value)
Parameters
Type Name Description
SByte value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(UInt16)

Appends a System.UInt16 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(ushort value)
Parameters
Type Name Description
System.UInt16 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Int16)

Appends a Int16 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(short value)
Parameters
Type Name Description
Int16 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(UInt32)

Appends a System.UInt32 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(uint value)
Parameters
Type Name Description
System.UInt32 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Int32)

Appends a Int32 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(int value)
Parameters
Type Name Description
Int32 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(UInt64)

Appends a UInt64 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(ulong value)
Parameters
Type Name Description
UInt64 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Int64)

Appends a Int64 (with decimal formatting) to the current UnsafeStringBuilder.

Declaration
public bool Append(long value)
Parameters
Type Name Description
Int64 value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.

Append(Boolean)

Appends a Boolean (true or false, litterally) to the current UnsafeStringBuilder.

Declaration
public bool Append(bool value)
Parameters
Type Name Description
Boolean value

The value to be appended.

Returns
Type Description
Boolean

true in case of success, false in case of buffer overflow.