[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<decimal> AsNullableDecimal(
this string val,
[OptionalAttribute] Nullable<decimal> dflt
)
public static Nullable<decimal> AsNullableDecimal(
this string val,
[OptionalAttribute] Nullable<decimal> dflt
)
<ExtensionAttribute>
Public Shared Function AsNullableDecimal (
val As String,
<OptionalAttribute> dflt As Nullable(Of Decimal)
) As Nullable(Of Decimal)
<ExtensionAttribute>
Public Shared Function AsNullableDecimal (
val As String,
<OptionalAttribute> dflt As Nullable(Of Decimal)
) As Nullable(Of Decimal)
public:
[ExtensionAttribute]
static Nullable<Decimal> AsNullableDecimal(
String^ val,
[OptionalAttribute] Nullable<Decimal> dflt
)
public:
[ExtensionAttribute]
static Nullable<Decimal> AsNullableDecimal(
String^ val,
[OptionalAttribute] Nullable<Decimal> dflt
)
static member AsNullableDecimal :
val : string *
[<OptionalAttribute>] dflt : Nullable<decimal> -> Nullable<decimal>
static member AsNullableDecimal :
val : string *
[<OptionalAttribute>] dflt : Nullable<decimal> -> Nullable<decimal>
Return Value
Type:
Nullable
Decimal 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).