C# Console WriteLine(UInt32)
Description
Console WriteLine(UInt32)
writes the text representation
of the specified 32-bit unsigned integer value, followed by the current
line terminator, to the standard output stream.
Syntax
Console.WriteLine(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]/*from w w w .ja va 2s . co m*/
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void WriteLine(
uint value
)
Parameters
Console.WriteLine(UInt32)
has the following parameters.
value
- The value to write.
Returns
Console.WriteLine(UInt32)
method returns
Example
using System;/* w w w . ja v a2 s. co m*/
public class MainClass{
public static void Main(string[] args) {
Console.WriteLine((UInt32)1234);
}
}