摘要:
项目中使用html转成pdf ,遇到包含& 特殊字符就会出错。 比如:<p>&</p>使用该html输出成pdf就会报异常 解决方案:需使用html转义符<p>&</p>来生成 阅读全文
摘要:
C#中的DateTime在逻辑上有个非常严重的缺陷: DateTime d = DateTime.Now; DateTime d2 = d.ToUniversalTime(); Console.WriteLine("{0}", d); Console.WriteLine("{0}", d2); va 阅读全文