.NET Framework Class Library for Silverlight
Decimal.Floor Method
Rounds a specified Decimal number to the closest integer toward negative infinity.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
Visual Basic (Declaration)
<SecuritySafeCriticalAttribute> _ Public Shared Function Floor ( _ d As Decimal _ ) As Decimal
C#
[SecuritySafeCriticalAttribute] public static decimal Floor( decimal d )
Parameters
- d
- Type: System.Decimal
A Decimal.
Return Value
Type: System.DecimalIf d has a fractional part, the next whole Decimal number toward negative infinity that is less than d.
-or-
If d doesn't have a fractional part, d is returned unchanged.
Examples
The following code sample illustrates the use of Floor.
Visual Basic
Class PiggyBank Public ReadOnly Property Dollars() As Decimal Get Return [Decimal].Floor(MyFortune) End Get End Property Protected MyFortune As Decimal Public Sub AddPenny() MyFortune += 0.01D End Sub End Class
C#
class PiggyBank { public decimal Dollars { get { return Decimal.Floor(MyFortune); } } protected decimal MyFortune; public void AddPenny() { MyFortune += .01m; } }
Version Information
Silverlight
Supported in: 5, 4, 3Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also