Skip to content

Instantly share code, notes, and snippets.

@forki
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save forki/c0181845e6c1584a6455 to your computer and use it in GitHub Desktop.
Save forki/c0181845e6c1584a6455 to your computer and use it in GitHub Desktop.
Compilation
// A := 5;
Decimal18 A = 5;
// MESSAGE(FORMAT(159957.6 / 12245.89 * A));
Console.WriteLine((Decimal18)(159957.6M / 12245.89M * A));
// 65.310728742459715
// MESSAGE(FORMAT(159957.6 / 12245.89 * 5));
Console.WriteLine((Decimal18)(159957.6M / 12245.89M * 5));
// 65.3107287424597151
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment