Decimal.FromOACurrency()方法用于将包含OLE自动化货币值的指定64位带符号整数转换为等效的Decimal值。
用法: public static decimal FromOACurrency (long cy);
Here, it takes an OLE Automation Currency value.
返回值:此方法返回一个包含cy等效项的Decimal。
以下示例程序旨在说明Decimal.FromOACurrency(Int64)方法的用法:
示例1:
// C# program to demonstrate the
// Decimal.FromOACurrency() Method
using System;
class GFG {
// Main Method
public static void Main()
{
// Declaring and initializing value1
long curr = long.MaxValue;
// getting Equivalent decimal value
// using IsFinite() method
decimal value = Decimal.FromOACurrency(curr);
// Display the HashCode
Console.WriteLine("Equivalent decimal "+
"value is {0}", value);
}
}
输出:
Equivalent decimal value is 922337203685477.5807
示例2:
// C# program to demonstrate the
// Decimal.FromOACurrency() Method
using System;
class GFG {
// Main Method
public static void Main()
{
// calling get() method
Console.WriteLine("Equivalent decimal value"+
" are respectively");
get(long.MaxValue);
get(long.MinValue);
get(1234567890987654321);
get(4294967295L);
}
// defining get() method
public static void get(long curr)
{
// getting Equivalent decimal value
// using FromOACurrency() method
decimal value = Decimal.FromOACurrency(curr);
// Display the HashCode
Console.WriteLine("{0}", value);
}
}
输出:
Equivalent decimal value are respectively 922337203685477.5807 -922337203685477.5808 123456789098765.4321 429496.7295
参考:
相关用法
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Decimal.FromOACurrency() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。