Amount Constructors

Definition

Overloads

Amount()

Initializes a new instance of the Amount class.

Amount(String, Nullable<Double>)

Initializes a new instance of the Amount class.

Amount()

Initializes a new instance of the Amount class.

public Amount ();
Public Sub New ()

Applies to

Amount(String, Nullable<Double>)

Initializes a new instance of the Amount class.

public Amount (string currency = default, double? value = default);
new Microsoft.Azure.Management.Billing.Models.Amount : string * Nullable<double> -> Microsoft.Azure.Management.Billing.Models.Amount
Public Sub New (Optional currency As String = Nothing, Optional value As Nullable(Of Double) = Nothing)

Parameters

currency
String

The currency for the amount value.

value
Nullable<Double>

Amount value.

Applies to