What is the difference between the two methods
Convert.ToBoolean()
and
Boolean.Parse()?
Is there any reason to use one or the other?
Additionally, are there any other type.Parse() methods that I should watch out for?
Thanks,
Matt
|
|
|
Given that fact, you should use
In terms of type.Parse() methods you should look out for, all the built-in numeric types have |
|||||||||||||
|
|
Boolean.Parse() will convert a string representation of a logical boolean value to a boolean value. Convert.ToBoolean() has multiple overloads that will convert primitive types to their boolean equivalent. Most, if not all, of the primitive types in C# have an associated *.Parse/Convert.To* method that serve the same purpose as Boolean.Parse()/Convert.ToBoolean(). |
||||
|
|