Provides a type converter to convert Boolean objects to and from various other representations.
Namespace:
System.ComponentModel
Assembly:
System (in System.dll)
Visual Basic (Declaration)
<HostProtectionAttribute(SecurityAction.LinkDemand, SharedState := True)> _
Public Class BooleanConverter _
Inherits TypeConverter
Dim instance As BooleanConverter
[HostProtectionAttribute(SecurityAction.LinkDemand, SharedState = true)]
public class BooleanConverter : TypeConverter
[HostProtectionAttribute(SecurityAction::LinkDemand, SharedState = true)]
public ref class BooleanConverter : public TypeConverter
public class BooleanConverter extends TypeConverter
This converter can only convert a Boolean object to and from a string.
For more information about type converters, see the TypeConverter base class and How to: Implement a Type Converter.
Note: |
|---|
You should never create an instance of a BooleanConverter. Instead, call the GetConverter method of the TypeDescriptor class. For more information, see the examples in the TypeConverter base class. |
The following code example converts a variable of type Boolean to and from a string.
Dim bVal As Boolean = True
Dim strA As String = "false"
Console.WriteLine(TypeDescriptor.GetConverter(bVal).ConvertTo(bVal, GetType(String)))
Console.WriteLine(TypeDescriptor.GetConverter(bVal).ConvertFrom(strA))
bool bVal=true;
string strA="false";
Console.WriteLine(TypeDescriptor.GetConverter(bVal).ConvertTo(bVal, typeof(string)));
Console.WriteLine(TypeDescriptor.GetConverter(bVal).ConvertFrom(strA));
bool bVal(true);
String^ strA = "false";
Console::WriteLine( TypeDescriptor::GetConverter( bVal )->ConvertTo( bVal, String::typeid ) );
Console::WriteLine( TypeDescriptor::GetConverter( bVal )->ConvertFrom( strA ) );
System..::.Object
System.ComponentModel..::.TypeConverter
System.ComponentModel..::.BooleanConverter
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Reference