Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Introduction to C#:

Simple code in C#:

using System;

namespace hello_word
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("hello");
            Console.WriteLine("word");
            Console.ReadLine();
        }
    }
}



This post first appeared on AR Programming, please read the originial post: here

Share the post

Introduction to C#:

×

Subscribe to Ar Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×