C#에서
string h= "str";
if (h is "")
그리고
string h= "str";
if (h== "")
이것이 귀하의 질문에 대한 답변입니까? "x is null"과 "x== null"의 차이점은 무엇입니까?
Prasad Telkikar2021-12-25 17:29:39C#에서
string h= "str";
if (h is "")
그리고
string h= "str";
if (h== "")
이것이 귀하의 질문에 대한 답변입니까? "x is null"과 "x== null"의 차이점은 무엇입니까?
Prasad Telkikar2021-12-25 17:29:39
이것의 중복
Jawad2021-12-25 17:28:37