CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: basic C# code

  1. #1
    Join Date
    Mar 2010
    Posts
    4

    basic C# code

    hello

    can any one
    give me the basic C# code

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: basic C# code

    For What

  3. #3
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: basic C# code

    Code:
    using System;
     
    namespace  CG
    {
      staticclassProgram
      {
        ///<summary/>
        [STAThread]
        staticvoid  Main( )
        {
          Console.WriteLine( "Hello!" );
        }
      }
    }


  4. #4
    Join Date
    Jun 2008
    Posts
    2,477

    Re: basic C# code

    Arjay can haz teh codez.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured