19
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
short s1 = -32768;
8
short s2 = 32767;
9
//short s3 = 35000; //compile-time error: Constant value '35000' cannot be converted to a 'short'
10
11
ushort us1 = 65535;
12
//ushort us2 = -32000; // compile-time error: Constant value '-32000' cannot be converted to a 'ushort'
13
14
Console.WriteLine(Int16.MaxValue);
15
Console.WriteLine(Int16.MinValue);
16
Console.WriteLine(UInt16.MaxValue);
17
Console.WriteLine(UInt16.MinValue);
18
}
19
}
Cached Result
Compilation error (line 1, col 1): A namespace cannot directly contain members such as fields or methods