There have been a number of posts with tips to improve build performance within Visual Studio 2005. I’ve consolidate these posts and other tips into a single post of techniques for common problems.
ref: http://weblogs.asp.net/bradleyb/archive/2005/12/06/432441.aspx
1.
protected override void InitializeCulture()
{
string _culture = “th-TH“;
Page.Culture = _culture;
Page.UICulture = _culture;
Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo(_culture);
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(_culture);
}
2.
<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”Template.aspx.cs”
Inherits=”Template” culture=”auto” uiculture=”auto” %>
Probably the biggest programming model improvement being made in .NET 3.5 is the work being done to make querying data a first class programming concept. We call this overall querying programming model “LINQ”, which stands for .NET Language Integrated Query. Developers can use LINQ with any data source, and built-in libraries are included with .NET 3.5 that [...]
One of the new things I’m super excited about right now is the LINQ family of technologies that are starting to come out (LINQ, DLINQ, XLINQ and others soon).
LINQ will be fully integrated with the next release of Visual Studio (code-name: Orcas) and it will include some very cool framework and tool support (including full [...]