摘要:
VSTS 2010架构功能组成,主要功能分为三部分:1)理解现有代码;2)明确结构设计;3)团队合作。1. UML Diagram.2. Architecture Explorer: This is a new and innovative tool to look at existing architectures. It enables to look at existing systems ... 阅读全文
摘要:
Today, I attended a unit test training held internally in Corp. Several gains:1. Applying Unit test is pretty simple! I never thought that the idea to do unit test and its implementation is just that ... 阅读全文
摘要:
Interface Key Notes (MSDN Interface)1. Explicit Interface ImplementationThere are 2: implicit and explicit interface implementation. Implicit type is normal to be used. Here, to understand more about ... 阅读全文
摘要:
As of Release 2009.2 (now in beta), Perforce supports “shelving”. That is, you can cache your modified files on the server, without having to check them in as a versioned change.More, look... 阅读全文
摘要:
Dictionary: For purposes of enumeration, each item in the dictionary is treated as a KeyValuePair<TKey, TValue> structure representing a value and its key. The order in which the items are re... 阅读全文
摘要:
They may not be in schedule in short time, but do in schedule in long run.. Hopefully I won't just make it a word without actions. 阅读全文
摘要:
[From MSDN Blog:http://blogs.msdn.com/shawnfa/archive/2004/02/27/81338.aspx] It's interesting to note all the power of the find combo box in the Visual Studio command bar (shortcut is: ctrl + /). It'... 阅读全文
摘要:
There are 3:1. Console.WriteLine-- it's for console application only.To see in output window: 2. Debug.WriteLine3. Trace.WriteLine (You just have to make sure the the TRACE compiler constant is define... 阅读全文
摘要:
Command window is very effective to me Just find! I can visit all commands here like going to callstack, errorlist, breakpoints, etc.With Ctrl + Tab, command window should be enough to visit everythin... 阅读全文
摘要:
#Region is useful to organize code. Some tips to use it:1. Ctrl+K,s to choose #region to insert it for you.2. Right click in the source file (.cs for example), choose outlining submenu, you will find ... 阅读全文