C#에서 개체가 Null인지 확인

Muhammad Maisam Abbas 2024년2월16일
  1. C#에서==연산자를 사용하여 Null 개체 확인
  2. C#에서is키워드를 사용하여 Null 개체 확인
C#에서 개체가 Null인지 확인

이 자습서에서는 C#에서 개체가 null인지 여부를 확인하는 방법에 대해 설명합니다.

C#에서==연산자를 사용하여 Null 개체 확인

이진 연산자==는 왼쪽의 값을 확인할 수 있습니다. 연산자의 측면은 C#에서 연산자의 오른쪽에있는 값과 같습니다. 다음 코드 예제는 C#에서==연산자를 사용하여 개체가 null인지 여부를 확인하는 방법을 보여줍니다.

using System;

namespace check_null_object {
  class Program {
    static void Main(string[] args) {
      string check = null;
      if (check == null) {
        Console.WriteLine("check is null");
      } else {
        Console.WriteLine("check is not null");
      }
    }
  }
}

출력:

check is null

위 코드는 C#에서==이항 연산자를 사용하여 문자열 변수checknull인지 여부를 확인합니다.

C#에서is키워드를 사용하여 Null 개체 확인

또한 is키워드를 사용하여 C#에서 개체가 null인지 여부를 확인할 수 있습니다. is키워드는 C#에서 이항 연산자==의 대안으로 사용됩니다. 다음 코드 예제는 C#에서is키워드를 사용하여 개체가 null인지 여부를 확인하는 방법을 보여줍니다.

using System;

namespace check_null_object {
  class Program {
    static void Main(string[] args) {
      string check = null;
      if (check is null) {
        Console.WriteLine("check is null");
      } else {
        Console.WriteLine("check is not null");
      }
    }
  }
}

출력:

check is null

위 코드는 C#에서==이항 연산자를 사용하여 문자열 변수checknull인지 여부를 확인합니다.

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

관련 문장 - Csharp Object