Base64 转换 %2B 变 空格 解决

//此方法转换会转换出错
deString.ServerUrlDecode().Replace(" ", "+")
//换此方法完美解决
HttpUtility.UrlDecode(deString.ToString(),Encoding.UTF8)

  

原文地址:https://www.cnblogs.com/liucai/p/4926125.html