我们已将 Humanizer 从 2.8.26 升级到 2.11.10,现在收到以下警告:
'MetricNumeralExtensions.ToMetric(double, bool, bool, int?)' is obsolete: 'Please use overload with MetricNumeralFormats'
有没有关于如何使用 MetricNumeralFormats 的示例?我应该用什么让它工作?
这是我们当前的代码:
using System;
using Humanizer;
public class Program
{
public static void Main()
{
Console.WriteLine(1234.ToMetric(false, true, 2));
}
}