这里有点问题。我正在尝试使用从 .txt 文件中获取文本的 IPAddress.Parse( text )。
由于我无法理解的原因,它会捕获此错误。“SystemFormatException:指定的 IPAddress 无效...第 32 行”
奇怪的是 text = 据127.0.0.1
我所知应该解析...
以下是相关代码:
string appData = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string folder = @"/cube";
string file = @"/info.txt";
try
{
string text = System.IO.File.ReadAllText(appData + folder + file);
text = text.Replace("\n", "");
Logs.store(text);
IP = IPAddress.Parse(text);
Logs.store("IP -> " + IP.ToString());
}
catch (Exception e)
{
setupRequired = true;
Logs.store("Setup required..");
}
提前致谢。