1、 分支语句: (1)if ...else if...else (2)switch...case...default (3)三目运算符?:;

2、 迭代语句 (1)while (2)do...while (3)for (4)foreach,迭代变量是 只读型局部变量

3、 跳转语句 (1)break:switch跳出case,结束分支;跳出迭代,结束当前循环 (2)continue:结束当层循环,只能用于迭代语句中 (3)goto:易读性变差 (4)return:只用于方法体中

string类型可以看成char类型的集合 任务驱动编程 char.IsWhiteSpace()判断空格

int a = int.Parse(); int b = Convert.ToInt32();