-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.
}