Thread: Quick help plz

  1. #1
    The Defective GRAPE Lurker's Avatar
    Join Date
    Feb 2003
    Posts
    949

    Quick help plz

    I just installed the free downloadable .NET framework and SDK from Microsoft. Can someone make a hello world program out of C# and post it and the code here so i can test if it worked or not? Thanks!
    Do not make direct eye contact with me.

  2. #2
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    PHP Code:
    using System;

    namespace 
    nvoigt.HelloWorld
    {
        
    /// <summary>
        /// Summary description for HelloWorld
        /// </summary>
        
    class HelloWorld
        
    {
            
    /// <summary>
            /// The main entry point for the application.
            /// </summary>
            
    [STAThread]
            static 
    void Main(string[] args)
            {
                
    System.Console.WriteLine"Hello World" );  
            }
        }

    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  3. #3
    The Defective GRAPE Lurker's Avatar
    Join Date
    Feb 2003
    Posts
    949
    Thanks !
    Do not make direct eye contact with me.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. can any1 plz make this assignment
    By jean in forum C Programming
    Replies: 17
    Last Post: 05-13-2009, 09:19 PM
  2. Do you know...
    By davejigsaw in forum C++ Programming
    Replies: 1
    Last Post: 05-10-2005, 10:33 AM
  3. Seg Fault -- Plz Help Quick
    By djwicks in forum C Programming
    Replies: 1
    Last Post: 04-10-2005, 09:08 AM
  4. Need Help quick reply plz
    By playboy1620 in forum C Programming
    Replies: 1
    Last Post: 04-11-2002, 11:12 AM
  5. just a reaaaaaaly quick question plz help
    By Unregistered in forum C++ Programming
    Replies: 1
    Last Post: 03-21-2002, 11:39 AM