.NET
movenet2.txt
Associated article: Moving To .NET 2.0
Tags: .NET Design
Published source code accompanying the article by Eric Bergman-Terrell in which he discusses how developers can move to .NET 2.0 using new features of C# 2.0 and Visual Studio 2005 include a host of new features. Also see MOVENET2.ZIP.
Moving To .NET 2.0
by Eric Bergman-Terrell
Listing One
// Update the current time display.
private void UpdateTime()
{
// Check to see if this method is called from thread that created this Form.
Debug.Assert(!InvokeRequired);
currentTimeLabel.Text = DateTime.Now.ToLongTimeString() +
" (" + ...


