Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs
index 19db84eb4..521a3abe9 100644
--- a/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs
+++ b/src/System.Private.CoreLib/shared/System/Runtime/CompilerServices/DecimalConstantAttribute.cs
@@ -9,7 +9,7 @@ namespace System.Runtime.CompilerServices
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter, Inherited = false)]
public sealed class DecimalConstantAttribute : Attribute
{
- private Decimal _dec;
+ private decimal _dec;
[CLSCompliant(false)]
public DecimalConstantAttribute(
@@ -20,7 +20,7 @@ namespace System.Runtime.CompilerServices
uint low
)
{
- _dec = new Decimal((int)low, (int)mid, (int)hi, (sign != 0), scale);
+ _dec = new decimal((int)low, (int)mid, (int)hi, (sign != 0), scale);
}
public DecimalConstantAttribute(
@@ -31,9 +31,9 @@ namespace System.Runtime.CompilerServices
int low
)
{
- _dec = new Decimal(low, mid, hi, (sign != 0), scale);
+ _dec = new decimal(low, mid, hi, (sign != 0), scale);
}
- public Decimal Value => _dec;
+ public decimal Value => _dec;
}
}