Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะเขียน Hello World ใน C # ได้อย่างไร


หากต้องการพิมพ์ “Hello World” ใน C# ให้ใช้ Console.WriteLine

ให้เราดูโปรแกรม C# พื้นฐานเพื่อแสดงข้อความ -

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Text;

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

ผลลัพธ์

Hello World

ด้านบน เราแสดงข้อความ “Hello World” โดยใช้เมธอด WriteLine() ผลลัพธ์จะแสดงโดยใช้คอนโซล -

Console.WriteLine("Hello World");