Computer >> Máy Tính >  >> Lập trình >> C#

Làm thế nào để khởi tạo một chuỗi thành một chuỗi rỗng trong C #?

Để khởi tạo một chuỗi thành một danh sách trống -

string myStr = null;

Bây giờ, hãy sử dụng phương thức tích hợp sẵn IsNullOrEmpty () để kiểm tra xem danh sách có trống hay không -

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

Hãy cho chúng tôi xem mã hoàn chỉnh -

Ví dụ

using System;

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

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

Đầu ra

String is empty or null!

Một cách khác để khởi tạo một chuỗi thành một chuỗi rỗng, hãy thử đoạn mã sau. Ở đây, chúng tôi đã sử dụng string.Empty -

Ví dụ

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!");
         }
      }
   }
}

Đầu ra

String is empty or null!