Windows Systems Programming: Spring 2004

[ Home | Syllabus | Course Notes | Assignments | Search]


Hello Dr. Wild

A simple c# program (you can start here)

(This symbol   is a noteworthy feature of the program - sometimes it references a footnote (if you click on it), footnotes appear after the program separated by a rainbow line)

using System;

class MyApp
{
    static void Main ()
    {
        Console.WriteLine ("Hello, Dr. Wild");
    }
}

Editing, Compiling and Running this program


Using Visual Studio .NET

To run this program using visual studio .net:

 


ILDASM

Run "ILDASM hello.exe" and you should see (after expanding "MyApp")

 


Double Click the Manifest to get


Double click "Main" gives the Common Intermediate Language code

 


A Little Experiment

Although an admittedly simple program - it is a good start for some experimenting.

What might be some interesting ideas to try out? (good questions lead to good science)

 

 


Copyright chris wild 1999-2004.
For problems or questions regarding this web contact [Dr. Wild].
Last updated: January 14, 2004.