Generic boolean parser method

Namespace:  HS.Sys.TheEnterprise.Common.Laserbear
Assembly:  Laserbear (in Laserbear.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public static bool ParseBoolean(
	string input
)
Visual Basic (Declaration)
Public Shared Function ParseBoolean ( _
	input As String _
) As Boolean
Visual C++
public:
static bool ParseBoolean(
	String^ input
)

Parameters

input
Type: System..::.String
String to check

Return Value

True if "1", "true" or string starts with "y", False if anything else

See Also