Share via


StringExtensions.IsBool Method

Checks whether a string can be converted to the Boolean (true/false) type.

Namespace:  System.Web.WebPages
Assembly:  System.Web.WebPages (in System.Web.WebPages.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function IsBool ( _
    value As String _
) As Boolean
'Usage
Dim value As String 
Dim returnValue As Boolean 

returnValue = value.IsBool()
public static bool IsBool(
    this string value
)
[ExtensionAttribute]
public:
static bool IsBool(
    String^ value
)
static member IsBool : 
        value:string -> bool
public static function IsBool(
    value : String
) : boolean

Parameters

Return Value

Type: System.Boolean
true if value can be converted to the specified type; otherwise, false.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.111).

Remarks

Before you try to convert, you can check whether the string can be converted to a Boolean value by calling the IsBool(String) method, which returns true if the string value can be converted.

See Also

Reference

StringExtensions Class

System.Web.WebPages Namespace