Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作自己的流行邮件客户端,而不是使用网络上的库。所以我这样做了。
如您所见,红色箭头在哪里,那是字符串的剩余部分,不知道如何摆脱它们。
在我为构建器附加的循环中,我不能放for (int = 0; i <= charNumber; i++),因为我得到了索引错误。所以最后我必须reader.ReadLine();为“。”放两个一个。和一个这样我就可以摆脱那些残留物,这样我的应用程序就不会失败。
for (int = 0; i <= charNumber; i++)
reader.ReadLine();
有什么想法吗?