This commit is contained in:
2024-05-16 15:01:35 +02:00
parent 64b26d6823
commit 44b37587d9
357 changed files with 1082 additions and 1545 deletions

View File

@@ -0,0 +1,9 @@
namespace FKGees.Extensions;
internal static class DecimalExtension
{
internal static string AsString(this decimal value)
{
return value.ToString("0.00");
}
}