4
Answers

Can I assign 1 or 0 into bool variable?

Usha Mohanta

Usha Mohanta

6y
1.4k
1
Can I assign 1 or 0 into bool variable?
 
static void Main(string[] args)
{
bool b = 1;
Console.WriteLine(b);
Console.ReadLine();
Answers (4)