Int
ToKiloFormatString
Creates a human readable kilo format string from int value.
26.ToKiloFormatString(); // ---> 26
1325.ToKiloFormatString(); // ---> 1,3K
175223.ToKiloFormatString(); // ---> 175K
520138193.ToKiloFormatString(); // ---> 520MToPluralFormString
Creates a human readable plural form from int value.
13.ToPluralFormString(oneForm: "apple", twoForm: "apples", manyForm: "apples"); // ---> applesLast updated
Was this helpful?