带符号整数:
short至少16位;
int至少与short—样长;
long至少32位,且至少与int—样长;
long long至少64位,且至少与long—样长;
无符号整数:
unsigned short
unsigned int
unsigned(等于unsigned int)
unsi ...……
类的代码:
1 using System;
2 using System.Data;
3 using System.Configuration;
4 using System.Net;
5 using System.IO;
6 using System.Text;
7 using System.Collections.Generic; ...……