摘要:
class QuickSort { public void Sort(int[] data, int start, int end) { if (start >= end) return; if (start + 1 == end) { if (d... 阅读全文
摘要:
原文:http://blogs.msdn.com/johnwpowell/archive/2008/03/23/10-tips-to-boost-your-productivity-with-c-and-visual-studio-2008.aspx Learn Key Bindings It's an obvious and trivial thing, but the timesaving w... 阅读全文