在.NET框架中编写的Utils.ReadFile
命名空间是什么?
如果它不存在,我需要引用什么DLL?
我的代码如下:
StringBuilder body = new StringBuilder(Utils.ReadFile(Server.MapPath(Url.Content("~/Content/Daybook.html"))));
答案 0 :(得分:2)
Utils.readFile
是一个Java语句。没有名为Utils.ReadFile
的标准.NET方法。也许它在自定义库中。
您可以使用File.ReadAllText
:
string text = File.ReadAllText(Server.MapPath(Url.Content("~/Content/Daybook.html")))