C# 中的 Decimal.Negate() 方法
C# 中的 Decimal.Negate() 方法用于返回指定的 Decimal 值乘以负一后的结果。
语法
以下是语法
public static decimal Negate (decimal val);
在上面,Val 是要取反的值。
示例
我们现在来看一个示例,以实现 Decimal.Negate() 方法 -
using System; public class Demo { public static void Main(){ Decimal val = 3972.491M; Console.WriteLine("Decimal Value = {0}", val); Console.WriteLine("HashCode = {0}", (val.GetHashCode()) ); TypeCode type = val.GetTypeCode(); Console.WriteLine("TypeCode = "+type); Decimal res = Decimal.Negate(val); Console.WriteLine("Negative (Decimal) = "+res); } }
输出
将生成以下输出 -
Decimal Value = 3972.491 HashCode = 620041307 TypeCode = Decimal Negative (Decimal) = -3972.491
示例
我们现在来看另一个示例,以实现 Decimal.Negate() 方法 -
using System; public class Demo { public static void Main(){ Decimal val = -29.35m; Console.WriteLine("Decimal Value = {0}", val); Console.WriteLine("HashCode = {0}", (val.GetHashCode()) ); TypeCode type = val.GetTypeCode(); Console.WriteLine("TypeCode = "+type); Decimal res = Decimal.Negate(val); Console.WriteLine("Negative (Decimal) = "+res); } }
输出
将生成以下输出 -
Decimal Value = -29.35 HashCode = 1503969289 TypeCode = Decimal Negative (Decimal) = 29.35
广告