-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cmon tiger u can't let people struggle with numbers like that
- Loading branch information
1 parent
74dbeaa
commit 93ce4b7
Showing
2 changed files
with
35 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System.Globalization; | ||
|
||
namespace Corona_Virus_Cases_2 | ||
{ | ||
public static class Manager | ||
{ | ||
public static string FormatValue(this decimal num) | ||
{ | ||
if (num > 999999 || num < -999999 ) | ||
{ | ||
return num.ToString("0,,.##M", CultureInfo.InvariantCulture); | ||
} | ||
else | ||
if (num > 999 || num < -999) | ||
{ | ||
return num.ToString("0,.#K", CultureInfo.InvariantCulture); | ||
} | ||
else | ||
{ | ||
return num.ToString(CultureInfo.InvariantCulture); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters