2
Answers

How can i code a validation with a boolean form value in c#

Photo of Guest User

Guest User

6y
607
1
var boolVar = Convert.ToBoolean("true");
{
if (boolVar)
{
what can be the statement? 
}
else
{
 what can be the statement?
}
 
also using a return value 

Answers (2)