C# StringWriter WriteLine(UInt32)
Description
StringWriter WriteLine(UInt32)
Writes the text representation
of a 4-byte unsigned integer followed by a line terminator to the text string
or stream.
Syntax
StringWriter.WriteLine(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]
public virtual void WriteLine(
uint value
)
Parameters
StringWriter.WriteLine(UInt32)
has the following parameters.
value
- The 4-byte unsigned integer to write.
Returns
StringWriter.WriteLine(UInt32)
method returns
Example
using System;// ww w .java2 s. c o m
using System.Globalization;
using System.IO;
class StrWriter
{
static void Main()
{
StringWriter strWriter = new StringWriter();
strWriter.WriteLine(32);
Console.WriteLine(strWriter.ToString());
}
}
The code above generates the following result.