HomeDigital EditionSys-Con RadioSearch Web Services Cd
B2B Beginning WS Business Process Management Case Studies Content Management Distributing Computing e-Business Electronic Data Interchange Enterprise Industry Insight Integration Interviews Java & Web Services .NET Portal Product Reviews Scalability & Performance Security SOAP Source Code UDDI Wireless WS Standards WS Tips & Techniques WSDL WS Editorials XML

Eclipsing .NET, by Kyle Gabhart
WSJ Vol 02 Issue 10 - pg.28

	


Listing 1:

using System;

namespace CSharpTestNamespace {

	class CSharpTest {

		private DateTime	currentDate;
		
		CSharpTest() {
			currentDate = DateTime.Now;	
		}//end CSharpTest()
	public static void Main() {
			CSharpTest	cst = new CSharpTest();
			Console.WriteLine( "Hello there." );
			Console.WriteLine( "Today is " + cst.currentDate );
			Console.Read();
		}//end Main()
		
	}//end class CSharpTest

}//end namespace CSharpTestNamespace