C# Console Write(UInt32)
Description
Console Write(UInt32)
writes the text representation
of the specified 32-bit unsigned integer value to the standard output stream.
Syntax
Console.Write(UInt32)
has the following syntax.
[CLSCompliantAttribute(false)]/*www . ja va 2s .com*/
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void Write(
uint value
)
Parameters
Console.Write(UInt32)
has the following parameters.
value
- The value to write.
Returns
Console.Write(UInt32)
method returns
Example
// w ww.jav a2 s . c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.Write((UInt32)123);
}
}