public void jsonLoad()
{
StreamReader xD = new StreamReader("pobrane.txt");
string costam = xD.ReadToEnd();
xD.Close();
Dictionary<string, string> values = JsonConvert.DeserializeObject<Dictionary<string, string>>(costam);
}
在我的代码的最后一行我收到错误
VerificationException: Operation could destabilize the runtime.
我要打开的文件很大:800KB,37000 行代码。有没有办法跳过这个限制?