问题现象:F9运行程序后,选中一个对象,Ctrl+F7跟踪值时,调用对象的某一个方法提示“Function to be called, TGGLPolyhedron3d.AsString, was eliminated by linker”. 问题原因:具体原因不明(可能是因为调用的方法从未被使用过,所以DLL中就把这个方法去掉了). 问题处理:在这个对象之后在代码编辑界面,写一行代码调用一下这个方法就可以了.…
问题现象:Delphi2007跟踪变量时提示“E2171 Variable 'APolygon' inaccessible here due to optimization” . 问题原因:可能是因为Delphi优化. 问题处理: 方法1:工程->右击->Opitons->Compiler->Code generation->Optimization->去掉对号. 方法2:在变量方法最后再调用一下变量,这样变量就不会在方法结束前优化掉了.…
JsonResult作为Action返回值时的错误 System.InvalidOperationException: This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior t…