HtmlEncode 等遇到 null 参数的情况

Response.Write(null); // 正常运行
Response.Write(HttpUtility.HtmlEncode(null)); // 正常运行
string.Format("{0}", null); // 出错

以上是 Response.Write、HttpUtility.HtmlEncode、string.Format 遇到 null 参数的情况。

你可能感兴趣的