static string ToMetric( int input, int decimals )
static string ToMetric( long input, int decimals )
static string ToMetric( System.Double input, int decimals )
static string ToMetric( float input, int decimals )

robot_2Generated
code_blocksInput

Description

The ToMetric method is a static extension method in the SandboxSystemExtensions class. It converts an integer value into a human-readable metric string representation, using the specified number of decimal places. This is useful for displaying large numbers in a more compact and understandable format, such as converting 1000 to "1K".

Usage

To use the ToMetric method, call it on an integer value, passing the desired number of decimal places as the second argument. This method is particularly useful when you need to display large numbers in a more readable format.

Example

int number = 1500;
int decimals = 1;
string metricString = number.ToMetric(decimals);
// metricString will be "1.5K"