gpt4 book ai didi

c# - InvalidCastException 将对象转换为它自己的类型

转载 作者:行者123 更新时间:2023-11-30 18:07:33 24 4
gpt4 key购买 nike

我目前对我遇到的问题感到非常困惑。我正在为另一个提供公共(public) .NET API 的应用程序编写插件。我创建了一个名为 Room 的类,我使用 PropertyGrid 允许用户查看和编辑 Room 实例的属性。一些属性仅限于一组标准值。因此,我使用带有 GetStandardValues() 覆盖的自定义 TypeDescriptors 来获取属性网格以显示这些属性的下拉列表。

一切正常。我得到了下拉菜单,我可以毫无问题地编辑值。然而现在出于某种原因,当我选择一个 Room 时,PropertyGrid 将带有类型描述符的属性显示为黑框。

alt text

如果我单击该框,它会变成白色,并且我会看到一个闪烁的光标,但我无法输入任何内容。如果我随后选择另一个房间,我的程序会崩溃并出现以下异常:

System.InvalidCastException was caught
Message=Unable to cast object of type 'DVAMC.Room' to type 'DVAMC.Room'.
Source=DVAMC
StackTrace:
at DVAMC.BuildingTypeConverter.GetStandardValuesSupported(ITypeDescriptorContext context) in C:\Documents and Settings\eric.anastas\My Documents\_SVN WC\DVAMC Working\BuildingTypeConverter.cs:line 14
at System.Windows.Forms.PropertyGridInternal.GridEntry.get_Flags()
at System.Windows.Forms.PropertyGridInternal.GridEntry.get_NeedsDropDownButton()
at System.Windows.Forms.PropertyGridInternal.PropertyDescriptorGridEntry.get_NeedsDropDownButton()
at System.Windows.Forms.PropertyGridInternal.PropertyGridView.SelectRow(Int32 row)
at System.Windows.Forms.PropertyGridInternal.PropertyGridView.SelectGridEntry(GridEntry gridEntry, Boolean fPageIn)
at System.Windows.Forms.PropertyGridInternal.PropertyGridView.GridPositionData.Restore(PropertyGridView gridView)
at System.Windows.Forms.PropertyGridInternal.PropertyGridView.Refresh(Boolean fullRefresh, Int32 rowStart, Int32 rowEnd)
at System.Windows.Forms.PropertyGridInternal.PropertyGridView.Refresh()
at System.Windows.Forms.PropertyGrid.Refresh(Boolean clearCached)
at System.Windows.Forms.PropertyGrid.set_SelectedObjects(Object[] value)
at System.Windows.Forms.PropertyGrid.set_SelectedObject(Object value)
at DVAMC.RoomDetailsForm.set_RoomDetailsSelectedRoom(Room value) in C:\Documents and Settings\eric.anastas\My Documents\_SVN WC\DVAMC Working\RoomDetailsForm.cs:line 115
at DVAMC.RoomDetailsForm.roomListTreeView_SelectionChanged(Object sender, EventArgs e) in C:\Documents and Settings\eric.anastas\My Documents\_SVN WC\DVAMC Working\RoomDetailsForm.cs:line 159
at BrightIdeasSoftware.ObjectListView.OnSelectionChanged(EventArgs e)
at BrightIdeasSoftware.ObjectListView.HandleApplicationIdle(Object sender, EventArgs e)
at System.Windows.Forms.Application.ThreadContext.System.Windows.Forms.UnsafeNativeMethods.IMsoComponent.FDoIdle(Int32 grfidlef)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.RunDialog(Form form)
at System.Windows.Forms.Form.ShowDialog(IWin32Window owner)
at System.Windows.Forms.Form.ShowDialog()
at DVAMC.RoomDetailsCmd.Execute(ExternalCommandData commandData, String& message, ElementSet elements) in C:\Documents and Settings\eric.anastas\My Documents\_SVN WC\DVAMC Working\RoomDetailsCmd.cs:line 44
InnerException:

堆栈跟踪中的最后一项指向我的 BuildingTypeConverter.GetStandardValuesSupported() 方法,如下所示。

GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)
{
Room r = (Room)context.Instance; //this is line 14 referenced by the InvalidCastException's stack trace

if (r.IsLinked)
{
return true;
}
else
{
return false;
}
}

现在,如果我在上面的第 14 行设置断点并尝试调试,调试器不会在断点处中断。此外,如果我在强制转换之前添加任意代码,InvalidCastException 的堆栈跟踪似乎总是引用 GetStandardValues() 的第一行,无论它是什么。例如,我尝试了以下。

public override bool GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext context)
{
string s = "hello world"; //FIRST LINE
int i = 0;


Room r = (Room)context.Instance;

.....

我仍然遇到相同的 InvalidCastException。然而,它的堆栈跟踪引用了上面我初始化 string s 的第一行。此外,如果我尝试在第一行设置断点,它也不会被触发。

就像我之前说的那样, 大约一天前工作得很好。我什至尝试在我的 SVN 存储库中回滚到以前的修订版。早在第一次修订时,我就创建了自定义类型描述符类,但仍然遇到了 InvalidCastExceptions 的问题。有谁知道发生了什么事吗?

最佳答案

如果堆栈跟踪始终显示同一行,即使在您更改了代码后,这将向我表明 ProperyGrid 未运行相同版本的程序集。当你说你放置了一个断点但断点从未被击中时,这进一步证实了这一点。如果您在 Visual Studio 的调试器内部运行,我建议您查看输出窗口(Ctrl+W、O),它将列出运行中加载的所有程序集(及其路径)。我看到程序集版本困惑,尤其是当程序集位于 GAC 中时,它坚持加载旧版本的程序集。

关于c# - InvalidCastException 将对象转换为它自己的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3895163/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com