Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

Decimal.Negate() วิธีการใน C #


Decimal.Negate() วิธีการใน C # ใช้เพื่อส่งคืนผลลัพธ์ของการคูณค่าทศนิยมที่ระบุด้วยค่าลบหนึ่งค่า

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public static decimal Negate (decimal val);

ด้านบน Val คือค่าที่จะปฏิเสธ

ตัวอย่าง

ให้เรามาดูตัวอย่างการใช้งาน Decimal.Negate() method −

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