我的表单包含几个NumericUpDown
控件。这些控件显示不同的小数位数。稍后在我的代码中,我将不同NumericUpDown.Value
的 's 放在一个字符串数组中arrStr()
,如下所示:
arrStr(1) = NumericUpDown1.Value
arrStr(2) = NumericUpDown2.Value
arrStr(3) = NumericUpDown3.Value
然后我将带有函数的数组打印File.WriteAllLines
到文本文件中。例如NumericUpDown1.Value = 1.00
,如果文件NumericUpDown2.Value = 2.30
中NumericUpDown3.Value = 2.124
包含以下值:
1
2.3
2.124
我想看看:
1.00
2.30
2.124
我已经尝试过Format
哪个有效,但是这种格式化方法并不方便,因为已经为每个设置了小数位数NumericUpDown
。再次做这项工作会很烦人,但现在有了Format
.