标签: c# string httppostedfile
我有一个HttpPostedFile对象,只需要提取已发布文件的内容。
我找到了this link,但这是一个很长的过程来获取包含内容的字符串。
有没有更短的路? (最好是一行指令。)
答案 0 :(得分:36)
var str = new StreamReader(postedFile.InputStream).ReadToEnd();
StreamReader.ReadToEnd