Phương pháp này Decimal.Negate () trong C # được sử dụng để trả lại kết quả của nhân giá trị thập phân theo quy định của một tiêu cực.
Cú pháp
Sau đây là cú pháp -
public static decimal Negate (decimal val);
Trên, Val là giá trị để phủ nhận.
Ví dụ
Bây giờ chúng ta xem một ví dụ để thực hiện các Decimal.Negate () phương pháp -
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); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Decimal Value = 3972.491 HashCode = 620041307 TypeCode = Decimal Negative (Decimal) = -3972.491
Ví dụ
Bây giờ chúng ta xem ví dụ khác để thực hiện các Decimal.Negate () phương pháp -
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); } }
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Decimal Value = -29.35 HashCode = 1503969289 TypeCode = Decimal Negative (Decimal) = 29.35