摘要:
1 今天做程序时需要向http协议的get地址中传递一个参数,然后使用string.format格式化,发现一个错误,提示“输入字符串的格式不正确。",语句如下 string id = "123456"; string str = string.Format("http://vip.esf.focus.cn/manager.php?do=sale&action=addOn&sale_id={ 0 }&sort=xj&xj=2", id);本来还以为是C#中的 符号 / 比较特殊,所以在前面加了个@,但是还是不正确 阅读全文