我想76,50
在文本框中输入一个十进制数。像这样将它添加到列表框中(已经有效)。我会将它保存到 .txt 文件中,但是当我打开 .txt 文件时,我希望数字像07650
(仅在 .txt 文件中)。当我以我的形式打开它时,它必须76,50
再次打开。我已经在 VB.net 中有以下内容:
Public Function FormatDecimal(ByVal perc As Decimal, ByVal PercOut As Integer) As String
Dim percent As Integer = 100
Dim percAsString As String = perc.ToString("00000")`
perc = perc * 100
PercOut = Convert.ToInt32(perc)
Do While txtPercentage.Text.Length < 5
perc = 0 + PercOut
Loop
Return percAsString
End Function
我不知道该放在哪里;当我将表单保存到 .txt 时,它会停止。
我一直在网站上寻找答案,但找不到答案。你能帮助我吗?