Appends a single-precision floating point number to the end of the current StringBuilder.
[Visual Basic] Overloads Public Function Append( _ ByVal value As Single _ ) As StringBuilder [C#] public StringBuilder Append( float value ); [C++] public: StringBuilder* Append( float value ); [JScript] public function Append( value : float ) : StringBuilder;
A reference to the current StringBuilder with the string representation of value appended.
ToString is used to get a string representation of the number. The capacity is adjusted as needed.
StringBuilder Class | StringBuilder Members | System.Text Namespace | StringBuilder.Append Overload List | Single