Notice
Recent Posts
Recent Comments
Link
투케이2K
112. (C#/NET) [Mac Os] [문법] string is null 사용해 문자열 null 값 여부 확인 본문
[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Text.Json.Serialization;
using System.Web;
using System.Text.Json;
using System.Text.Encodings.Web;
using System.Text.Unicode;
using System.Text.RegularExpressions;
using System.Timers;
using System.Threading;
using System.Diagnostics;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
// [메소드 수행]
static void Main(string[] args){
// [변수 선언]
string one = "";
string two = null;
string three = "twok";
// [is null 사용해 널 여부 확인]
bool one_null_flag = false;
if (one is null){
one_null_flag = true;
}
bool two_null_flag = false;
if (two is null){
two_null_flag = true;
}
bool three_null_flag = false;
if (three is null){
three_null_flag = true;
}
// [로그 출력]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"one_null_flag : {one_null_flag}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"two_null_flag : {two_null_flag}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"three_null_flag : {three_null_flag}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments