By GokiSoft.com| 19:29 24/06/2020|
C Sharp

Xây dựng dự án Hello World trong C# - C Sharp

Xây dựng dự án Hello World trong C# - C Sharp

Build & Phát hành dự án.

Phản hồi từ học viên

5

(Dựa trên đánh giá ngày hôm nay)

Nguyễn Hoàng Anh [C1907L]
Nguyễn Hoàng Anh

2020-06-24 13:25:35



using System;

class MainClass {
  public static void Main (string[] args) {
    Console.WriteLine ("Hello World");
  }
}



trung [C1907L]
trung

2020-06-24 13:15:57



using System;

class MainClass {
  public static void Main (string[] args) {
    Console.WriteLine ("Hello World");
  }
}



Ngô Quang Huy [C1907L]
Ngô Quang Huy

2020-06-24 13:14:09



using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace bsi1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("HelloWorld");
        }
    }
}



Phạm Ngọc Minh [T1907A]
Phạm Ngọc Minh

2020-05-13 13:02:09



using System;

namespace database
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}



Đỗ tuấn anh [T1907A]
Đỗ tuấn anh

2020-05-13 12:07:11



using System;

namespace hello
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadKey();
        }
    }
}



Đỗ Văn Huấn [T1907A]
Đỗ Văn Huấn

2020-05-13 09:41:55



using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace helloworld
{
	class Program
	{
		static void Main(string[] args)
		{
			Console.WriteLine("Hello World !!!");
		}
	}
}



Trương Công Vinh [T1907A]
Trương Công Vinh

2020-05-13 09:32:44



using System;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(" Hello World   !!!");
            
        }
    }
}



Lê Minh Bắc [T1907A]
Lê Minh Bắc

2020-05-13 09:24:31



using System;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadKey();
        }
    }
}



Phan Bạch Tùng Dương [T1907A]
Phan Bạch Tùng Dương

2020-05-13 09:16:56



namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}



lê văn phương [T1907A]
lê văn phương

2020-05-13 09:14:19



using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write(" Hello World");
            Console.ReadKey();
        }
    }
}