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

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

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

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

Liên kết rút gọn:

https://gokisoft.com/1371

Bình luận

avatar
Minh Nghia [T1907A]
2020-05-13 09:11:34



using System;

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


avatar
Thành Lâm [T1907A]
2020-05-13 09:11:05



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!");
            Console.ReadKey();
        }
    }
}


avatar
Đường Thanh Bình [T1907A]
2020-05-13 09:10:23



using System;

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


avatar
Trần Mạnh Dũng [T1907A]
2020-05-13 08:59:04



using System;

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


avatar
Trần Anh Quân [T1907A]
2020-05-13 08:58:34



using System;

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


avatar
thienphu [T1907A]
2020-05-13 08:56:06



using System;

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


avatar
Trần Ngọc Hải [T1907A]
2020-05-13 08:55:57



using System;

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


avatar
Phí Văn Long [T1907A]
2020-05-13 08:55:00



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("Heeloo World");
            Console.ReadKey();
        }
    }
}