这是我背后的asp.net代码:
public string ReadJSON(string jsonPath)
{
FileStream fs = new FileStream(jsonPath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
string WillReturn = "";
try
{
WillReturn = sr.ReadToEnd();
return WillReturn;
}
catch (Exception ex)
{
WillReturn = null;
return WillReturn;
}
finally { sr.Close(); fs.Dispose(); }
}
但我的数据是 128 mb。而且我没有出错,但没有阅读。我试图调试。WillReturn = sr.ReadToEnd(); 上下文是:WillReturn 无法评估表达式。
我怎样才能读到这个?