Thursday, 19 July 2012

byte data type

Byte data type

 


Byte Data Type

using System;
class bbb
{
public static void Main()
{
byte a=255; // Range of byte is 0 to 255
Console.WriteLine(a);
}
}

No comments:

Post a Comment