### Install ExcelNumberFormat via NuGet Source: https://github.com/andersnm/excelnumberformat/blob/master/README.md Run this command in the Package Manager Console to install the ExcelNumberFormat library. ```powershell PM> Install-Package ExcelNumberFormat ``` -------------------------------- ### Format a number using ExcelNumberFormat Source: https://github.com/andersnm/excelnumberformat/blob/master/README.md Instantiate a NumberFormat object with a custom format string and use its Format method to format a double value. Uses CultureInfo.InvariantCulture for formatting. ```csharp var format = new NumberFormat("#.##"); Console.WriteLine(format.Format(1234.56, CultureInfo.InvariantCulture)); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.