My DotNet Pulse

Tuesday, October 11, 2005

Another way to invoke UI from a worker thread - The Code Project - C# Controls

Monday, October 10, 2005

Proxy Generation in Whidbey (VS Studio) has been improved

When generating the proxy class based on the WSDL, the proxy classes created in Whidbey now use properties instead of public members. By the way, this is the suggested coding standard in most companies. That is, you never expose public members but always uses properties instead.

===Before
public class Email {
public string From;
public string To;
}

===Now in Whidbey
public partial class Email
{
private string fromField;
private string toField;

public string From {
get { return this.fromField; }
set { this.fromField = value;
}

public string To {
get { return this.toField; }
set { this.toField = value; }
}
}

Friday, September 30, 2005

Visual Studio Home: Choosing Between Microsoft Visual Studio Team System and Microsoft Visual SourceSafe

Visual Studio Home: Choosing Between Microsoft Visual Studio Team System and Microsoft Visual SourceSafe: "Summary: Outlines the major factors that will help developers decide between Microsoft Visual SourceSafe 2005 and Microsoft Visual Studio 2005 Team Foundation Server for software change management. (6 printed pages)
Contents"

ASP.NET Home: ASP.NET Spiced: AJAX

ASP.NET Home: ASP.NET Spiced: AJAX: "Summary: Learn how AJAX (Asynchronous JavaScript And XML) can be used to make your Microsoft ASP.NET applications more dynamic and responsive. (17 printed pages)"

Thursday, August 25, 2005

VB.NET and C# Comparison

VB.NET and C# Comparison: "VB.NET and C# Comparison"

also

http://www.harding.edu/USER/fmccown/WWW/java1_5_csharp_comparison.html
Hellow World