摘要:
C#语法基础05_switch switch(expression){ case constant-expression : statement(s); break; case constant-expression : statement(s); break; /* 您可以有任意数量的 case 阅读全文
摘要:
C#语法基础04_Debug.Assert 仅当为false时,跳出信息提示框,或将显示简化提醒信息和提醒消息 // 存在重载 Debug.Assert(<bool>); Debug.Assert(<bool>,"simplified string"); Debug.Assert(<bool>,"s 阅读全文
摘要:
C#语法基础03_格式化输出 占位符 格式化输出 格式化数字输出表格 占位符 {<index>} // eg:{0} {1} {2} 例子 class Program { static void Main(string[] args) { string nameCat = "Tom"; string 阅读全文