本文介绍了为什么我的命令将正面转换为负面不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

所以,例如,如果我输入20并执行命令而不是将其设为-20,那么它为20-,为什么?



我是什么尝试过:



So if for example i enter 20 and execute the command instead of making it -20 it makes it 20-, why??

What I have tried:

textBox1.Text = (Double.Parse(textBox1.Text) * -1).ToString();

推荐答案


 string res=String.Format("{0:#.##;-#.##}", (Double.Parse("200.549") * -1));
//'-200.55'



前3个'#'符号格式化正数。没有'+'符号四舍五入到小数点后两位。第二组3'#'符号格式为负数。一个' - '符号后跟数字四舍五入到小数点后两位。


The first 3 '#'symbols format a positive number. No '+' sign rounded to 2 decimal places. The second set of 3 '#'symbols format a negative number. A '-' sign followed by the number rounded to 2 decimal places.


这篇关于为什么我的命令将正面转换为负面不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 00:21