.NET
dotnetlx.txt
Associated article: .NET Development on Linux
Tags: .NET Tools Open Source Design
Published source code accompanying the article by Eric Bergman-Terrell in which he finds out that a VM and Mono comes in handy when creating C# .NET programs. In addition to Linux, Mono lets you develop and run .NET client and server applications on Solaris, Mac OS X, Windows, and UNIX. Also see DOTNETLX.ZIP. Also see UbuntuDotNetDevVM.ZIP.
.NET Development on Linux
by Eric Bergman-Terrell
Listing One
protected virtual void CalculateButtonClicked (object sender, System.EventArgs e)
{
GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.Watch);
// lengthy computation
GdkWindow.Cursor = new Gdk.Cursor(Gdk.CursorType.LeftPtr);
}
Listing Two
protected virtual ...


