一:项目结构
文件后缀:
.cs---源文件(程序代码)
.csproj---项目文件(管理文件项)
.sln---解决方案文件(管理项目)
.config---配置文件
============
主函数
static void main (string [] args)
{
}
console.writeline();
console.readline();
--------------
数据类型
整形:int short byte long
浮点型:fioat double decimal
字符型: char
布尔型: bool
字符串型: string
日期时间型:datetime
------------------------------
基本类型转换
1.自动转换(转换同一类型)
float a;
double b=3.14
a=(float)b;
2.强制转换
int a;
string b=7;
a=int .parse(b)||a=convert.toint32(b);
------------------------------
运算符:
算数运算符:+ - * /
关系运算符: > < >= <= == !=
逻辑与运算符:&& ||
原文地址:http://www.cnblogs.com/wei270647220/p/4164742.html