问题是:我运行此代码(代码1),并在浏览器(ASP.NET)中获得System.InvalidCastException。完全相同的代码(在我的例子中,我使用另一个项目中的这个函数),在另一个项目中运行并使用相同的数据工作正常,并且不会抛出任何异常。我尝试捕获此异常并查看问题对象(代码 2)的内部,但随后令我惊讶的是没有捕获异常(我在 catch 代码块的第二行放置了一个断点以确保)并且得到了正确的输出在浏览器中代码1private static List<Dictionary<string, object>> GetResultRows(SQLiteDataReader Reader) { List<Dictionary<string, object>> Result = new List<Dictionary<string, object>>(); if (!Reader.HasRows) return Result; while (Reader.Read()) { var CurrentRow = new Dictionary<string, object>(); Result.Add(CurrentRow); for (int i = 0; i < Reader.FieldCount; i++) { CurrentRow.Add(Reader.GetName(i), Reader.GetString(i)); } } return Result; }代码2private static List<Dictionary<string, object>> GetResultRows(SQLiteDataReader Reader) { List<Dictionary<string, object>> Result = new List<Dictionary<string, object>>(); if (!Reader.HasRows) return Result; while (Reader.Read()) { var CurrentRow = new Dictionary<string, object>(); Result.Add(CurrentRow); for (int i = 0; i < Reader.FieldCount; i++) { //CurrentRow.Add(Reader.GetName(i), Reader.GetString(i)); try { CurrentRow.Add(Reader.GetName(i), Reader.GetString(i)); } catch { var temp = Reader.GetValue(i); System.Diagnostics.Debug.WriteLine($"{Reader.GetName(i)} = {Reader.GetValue(i)}"); } } } return Result; }我希望这个函数尽可能快,所以 try-catch 无法解决我的问题。有任何想法吗?UPD:浏览器异常:图像
- 2 回答
- 0 关注
- 148 浏览
添加回答
举报
0/150
提交
取消