2016-08-01 166 views
-3

當我啓動該程序時,Visual Studio 2015(我使用WPF和C#)總是給我一個mscorlib.dll中發生的類型'System.FormatException'的未處理異常。未處理的異常類型System.FormatException

string ascii = string.Empty; 

for (int i = 0; i < dec.Length; i += 3) 
{ 
    ascii += Convert.ToChar(Convert.ToByte(dec.Substring(i, 3))); // The exception occurs here. 
} 

回答

1

您的字符串中包含非數字字符。那是什麼導致你的FormatException

根據MSDN

值不包括可選的標誌(0到9),隨後的數字序列的。

相關問題