摘要: public static string PercentEncode(string s) { var bytes = Encoding.UTF8.GetBytes(s); var sb = new StringBuilder(); foreach (var b in bytes) { if ((b ... 阅读全文
posted @ 2014-11-18 15:27 故事里的事那都不是事 阅读(131) 评论(0) 推荐(0)