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

จะพิมพ์บรรทัดว่างใน C # ได้อย่างไร


หากต้องการแสดงบรรทัดใน C# ให้ใช้ Console.WriteLine()

ใต้นั้นกำหนดบรรทัดว่าง −

Console.WriteLine(" ");

ต่อไปนี้เป็นรหัสที่แสดงบรรทัดว่าง -

ตัวอย่าง

using System;
namespace Program {
   public class Demo {
      public static void Main(String[] args) {

         Console.WriteLine(" ");
         Console.WriteLine("Displayed a blank line above!\n");
         Console.ReadLine();

      }
   }
}

ผลลัพธ์

Displayed a blank line above!