Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 HttpPostedFile 对象,只需要提取发布文件的内容。
我找到了这个链接,但这是一个很长的过程来获取包含内容的字符串。
有没有更短的方法?(最好是单行指令。)
var str = new StreamReader(postedFile.InputStream).ReadToEnd();
StreamReader.ReadToEnd