[This is preliminary documentation and is subject to change.]
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static Nullable<bool> AsNullableBool(
this string val,
Nullable<bool> dflt = false
)
public static Nullable<bool> AsNullableBool(
this string val,
Nullable<bool> dflt = false
)
<ExtensionAttribute>
Public Shared Function AsNullableBool (
val As String,
Optional dflt As Nullable(Of Boolean) = false
) As Nullable(Of Boolean)
<ExtensionAttribute>
Public Shared Function AsNullableBool (
val As String,
Optional dflt As Nullable(Of Boolean) = false
) As Nullable(Of Boolean)
public:
[ExtensionAttribute]
static Nullable<bool> AsNullableBool(
String^ val,
Nullable<bool> dflt = false
)
public:
[ExtensionAttribute]
static Nullable<bool> AsNullableBool(
String^ val,
Nullable<bool> dflt = false
)
static member AsNullableBool :
val : string *
?dflt : Nullable<bool>
(* Defaults:
let _dflt = defaultArg dflt false
*)
-> Nullable<bool>
static member AsNullableBool :
val : string *
?dflt : Nullable<bool>
(* Defaults:
let _dflt = defaultArg dflt false
*)
-> Nullable<bool>
Return Value
Type:
Nullable
Boolean 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
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).