我的老师希望我的项目没有“像ToString这样的功能”。我不想冒险并使用解析,所以有没有办法发送字符串加倍?我正在制作一个计算器。
private void btnln_Click(object sender, EventArgs e)
{
if (Store.Length > 0) //Check if store is longer than 0
{
double x = double.Parse(Store); //Put store into a double
Store = ""; //Clear store
Store += Math.Log(x); //Natural logarithm
lblNumbers.Text = Store; //Update numbers label
}
}
所以我想要这条线 double x = double.Prase(Store); 被替换