Answers for "C# decimal built-in methods"

C#
0

C# decimal built-in methods

using System;

decimal x = 12m;
decimal y = 5m;
decimal z = 12.89m;

Console.WriteLine(decimal.Remainder(x, y));
Console.WriteLine(decimal.Add(x, y));
Console.WriteLine(decimal.Subtract(x, y));
Console.WriteLine(decimal.Round(z, 1));
Posted by: Guest on October-13-2021

C# Answers by Framework

Browse Popular Code Answers by Language