The Artima Developer Community
Sponsored Link

Java Buzz Forum
Mono Beta 1 Here, 1.0 in June

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Weiqi Gao

Posts: 1808
Nickname: weiqigao
Registered: Jun, 2003

Weiqi Gao is a Java programmer.
Mono Beta 1 Here, 1.0 in June Posted: May 6, 2004 9:39 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Weiqi Gao.
Original Post: Mono Beta 1 Here, 1.0 in June
Feed Title: Weiqi Gao's Weblog
Feed URL: http://www.weiqigao.com/blog/rss.xml
Feed Description: Sharing My Experience...
Latest Java Buzz Posts
Latest Java Buzz Posts by Weiqi Gao
Latest Posts From Weiqi Gao's Weblog

Advertisement

Ximian^H^H^H^H^H^H Novell announced Mono Beta 1 yesterday. Mono is an implementation of the .NET Framework for Linux, Unix and Windows.

I had been a fan of Mono since the early days, getting the sources from CVS, building it daily to see the progress, and writing my first C# programs with it.

It's amazing what the Ximian folks have done in a few short years. The Beta 1 release for Fedora Core 1 contains 48 RPMs totalling 67MBs in size.

Installation is a breeze with yum. I simply added the following in my /etc/yum.conf and installed everything that's available (yum list followed by a bunch of yum installs):

[mono]
name=Mono
baseurl=http://www.go-mono.com/archive/beta1/fedora-1-i386/

Here's the obligatory Hello GTK# application:

using Gtk;
using GtkSharp;
using System;
 
class Hello {
    static void Main() {
        Application.Init();
        Window window = new Window("Hello Gtk#");
        window.DeleteEvent += new DeleteEventHandler(DeleteEvent);
        window.Show();
        Application.Run();
    }

    static void DeleteEvent(object obj, DeleteEventArgs args) {
        Application.Quit();
    }
}

And here's the screenshot:

Read: Mono Beta 1 Here, 1.0 in June

Topic: Java[tm] Web Start Developer's Guide Previous Topic   Next Topic Topic: SCDJWS Beta Cert Exam

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use