Answers for "how to convert an int to a bool in c#"

C#
0

int to bool c#

int i = 0;
bool b = Convert.ToBoolean(i);
Posted by: Guest on November-22-2020

Code answers related to "how to convert an int to a bool in c#"

C# Answers by Framework

Browse Popular Code Answers by Language