摘要: string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st 阅读全文
posted @ 2020-05-22 23:23 shansally 阅读(1306) 评论(0) 推荐(0) 编辑
摘要: 1. 错误信息 2. 原因: 请求参数较长,修改后正常了,可能是被浏览器或服务器限制了 3. 参考: https://www.ionos.com/digitalguide/hosting/technical-matters/err-connection-reset/ (问题描述) https://w 阅读全文
posted @ 2020-05-22 23:15 shansally 阅读(11481) 评论(0) 推荐(0) 编辑