C#에서 string.Empty를 사용하여 문자열을 공백으로 설정 -
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!