Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
810 views
in Technique[技术] by (71.8m points)

c# - Why am I getting "CS0472: The result of the expression is always true since a value of type int is never equal to null of type int?"

string[] arrTopics = {"Health", "Science", "Politics"};

I have an if statement like:

 if (arrTopics.Count() != null)

When I hover my mouse over the above statement, it says:

Warning CS0472: The result of the expression is always true since a value of type int is never equal to null of type int?

I am not able to figure out why it is saying so. Can anybody help me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

int can never be equal to null. int? is the nullable version, which can be equal to null.

You should check if(arrTopics.Count() != 0) instead.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...