1 性能提示 Performance Tips 当我们想知道执行一段代码所耗费的时间时,需要借助于.NET 框架的Stopwatch类,像下面这样: class Program { static void Main() { // Create new stopwatch Stopwatch stopwatch = new Stopwatch(); // Begin timing stopwatch.Start(); // Do something 这里是需要测试的耗费时间的代码 for (int…
[译]一个灵活的 Trello 敏捷工作流 翻译自 An Agile Trello Workflow That Keeps Tasks Flexible Getting things done 可不只是使用一个工具,检查清单里的条目,或者把一个项目标记为"已完成"这么简单.Getting things done 是一个过程:它是涉及到计划.执行.迭代.反馈的一种思考方式.过程中会遇到问题,而且有很多变动的东西.理想情况下是通过协同输出最好的产出物.简单来讲,getting things…