Click or drag to resize
DigitalRuneStringBuilderExtensionsAppendNumber Method (StringBuilder, Single)
Converts a float number to a string and adds it to the string builder.

Namespace: DigitalRune.Text
Assembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax
public static void AppendNumber(
	this StringBuilder builder,
	float number
)

Parameters

builder
Type: System.TextStringBuilder
The string builder.
number
Type: SystemSingle
The number.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type StringBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptionbuilder is .
Remarks
It shows 2 decimal digits.
See Also