System.Convert.ToBoolean(char)

Here are the examples of the csharp api System.Convert.ToBoolean(char) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : BasicConvert.Overload.cs
with MIT License
from Dogwei

bool IXConverter<char, bool>.Convert(char value)
			=> Convert.ToBoolean(value);

19 Source : CharExtensions.cs
with GNU General Public License v3.0
from ME3Tweaks

public static bool ToBoolean(this char value)
		{
			return Convert.ToBoolean(value);
		}