const string dataFmt = "{0,-45}{1,31}";
public static void Display(Decimal Left, Decimal Right)
var strValue = Left + " - " + Right;
Console.WriteLine(dataFmt, strValue, Left.Subtract(Right));
public static void Main()
Display(new decimal(1230000000, 0, 0, false, 7), 0.0012300M);
Display(12345678900000000M, 0.0000000012345678M);
Display(123456789.0123456789M, 123456789.1123456789M);