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

วิธีใช้ string.Empty หรือ String.Empty เพื่อเริ่มต้นสตริงใน C #


ตั้งค่าสตริงว่างโดยใช้ string.Empty ใน C# -

string myStr = string.Empty;

ในการตรวจสอบว่าเป็นสตริงหรือไม่ ให้ใช้วิธี IsNullOrEmpty() -

if (string.IsNullOrEmpty(myStr)) {
   Console.WriteLine("String is empty or null!");
}

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

using System;

namespace Demo {
   public class Program {
      public static void Main(string[] args) {
         string myStr = string.Empty;

         if (string.IsNullOrEmpty(myStr)) {
            Console.WriteLine("String is empty or null!");
         } else {
            Console.WriteLine("String isn't empty or null!");
         }
      }
   }
}

ผลลัพธ์

String is empty or null!