我正在 Visual Studio 2012 C# Form 应用程序中编写程序。单击按钮后,我想在其中使用 log(base 10) 进行计算。我看到了一个代码,我在我的程序中写了它,但它给了我一个错误。我哪里错了?
public static decimal Log10(
decimal value
)
您需要实际实现该功能,而不仅仅是声明它:
public static decimal Log10(decimal value)
{
return Math.Log10((double)value);
}
好吧,正如您所见,.NET 框架中已经内置了这样的功能:Math.Log10
. 因此,您可能不需要重新发明轮子,只需使用它即可。