-数据类型、数组和字符串 C#程序设计数据类型 l C#中数据类型代表了要在变量中存储的数据的种 类,每一个变量或对象都必须申明为一种数据类 型。 l C#数据类型可分为 n内置的类型(比如int,char,double,string等) n用户自定义的类型(struct,class,interface等)C#内置类型 l byte、char、short、 int、 long l float、double、decimal l bool l string l objectIntegral types Type Range Suffix Example Size(bytes) sbyte -128to127 No 100 1 byte 0to255 No 100 1 char U+0000toU+ffff No A,n,t u0041,x0041 2 short -32,768to32,767 No 100 2 ushort 0to65,535 no、u或U 100u 2 int -2,147,483,648to2,147,483,647 No 100 4 uint 0to4,294,96