Decimal.Subtract(Decimal, Decimal) Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Subtraherar ett angivet Decimal värde från ett annat.
public:
static System::Decimal Subtract(System::Decimal d1, System::Decimal d2);
public static decimal Subtract(decimal d1, decimal d2);
static member Subtract : decimal * decimal -> decimal
Public Shared Function Subtract (d1 As Decimal, d2 As Decimal) As Decimal
Parametrar
- d1
- Decimal
Minuend.
- d2
- Decimal
Subtrahend.
Returer
Resultatet av att subtrahera d2 från d1.
Undantag
Returvärdet är mindre än Decimal.MinValue eller större än Decimal.MaxValue.
Exempel
I följande exempel visas användningen av Subtract.
class PiggyBank {
public decimal Cents {
get {
return Decimal.Subtract(MyFortune, Decimal.Floor(MyFortune));
}
}
protected decimal MyFortune;
public void AddPenny() {
MyFortune += .01m;
}
}
type PiggyBank() =
let mutable myFortune = 0m
member _.Cents =
Decimal.Subtract(myFortune, Decimal.Floor myFortune)
member _.AddPenny() =
myFortune <- myFortune + 0.01m
Class PiggyBank
Public ReadOnly Property Cents() As Decimal
Get
Return [Decimal].Subtract(MyFortune, [Decimal].Floor(MyFortune))
End Get
End Property
Protected MyFortune As Decimal
Public Sub AddPenny()
MyFortune += 0.01D
End Sub
End Class