Do not assume a managed thread is a Win32 thread - it could be a fiber. The runtime will run managed threads as fibers on top of real threads owned by SQL Server. These threads will be shared across AppDomains and even databases in the SQL Server process. Using managed thread local storage will work, but you may not use unmanaged thread local storage or assume your code will run on the current OS thread again. Do not change settings like the thread's locale. Do not call CreateCriticalSection or CreateMutex via P/Invoke because they require the thread that enters a lock also exit the lock. Since this will not be the case when using fibers, Win32 critical sections and mutexes will be useless in SQL Server. You may safely use most of the state on a managed System.Thread object, including managed thread local storage and the thread's current UI culture. For programming model reasons, you will not be able to change a thread's current culture when running in SQL Server though (this will be enforced through a new permission).
Displays the revision history for one or more files and folders. tf history itemspec /version:versionspec /stopafter:number ...
Displays the Sort dialog box which enables sorting by multiple columns or rows, case-sensitive sorts, and other sort options. ...
Displays the template in parent categories (roll up display). This tag is only used for internally (VS or VSIP) produced ...
Displays the version of one or more items in a workspace. tf localversions itemspec /recursive /format:brief|detailed /w ...
Do not assume a managed thread is a Win32 thread - it could be a fiber. The runtime will run managed threads as fibers on ...
Do not call this method from your code, the method is added to verify the existence of user events in the code behind file. ...
Do not change the database name. It will be properly coded for build and deployment This is using sqlcmd variable substitution ...
Do not change the value of the Name attribute below. If it does not match the folder name of the List Definition project ...
Do not declare explicit static constructors on value types. Initializing static data in explicit static constructors results ...