gpt4 book ai didi

c# - 在运行时获取对象类型

转载 作者:太空狗 更新时间:2023-10-30 01:09:20 29 4
gpt4 key购买 nike

我有下面的代码。我得到一个我不知道其类型的对象。我必须检查三个 if 条件检查其类型,然后进行正确的转换。

有没有办法在运行时获取对象类型,并进行转换,不检查任何 if 条件?

我拥有的对象是 requirementTemplate,我必须使用多种类型检查它以获取其类型然后进行转换。

if (requirementTemplate.GetType() == typeof(SRS_Requirement))
{
((SRS_Requirement)((TreeNodeInfo)ParentTreeNode.Tag).Handle).AssociatedFeature = ((SRS_Requirement)requirementTemplate).AssociatedFeature;
}
else if (requirementTemplate.GetType() == typeof(CRF_Requirement))
{
((CRF_Requirement)((TreeNodeInfo)ParentTreeNode.Tag).Handle).AssociatedFeature = customAttr.saveAttributesCustomList(AttributesCustomListCloned);
}
else if (requirementTemplate.GetType() == typeof(SAT_TestCase))
{
((SAT_TestCase)((TreeNodeInfo)ParentTreeNode.Tag).Handle).AssociatedFeature = ((SAT_TestCase)requirementTemplate).AssociatedFeature;
}

最佳答案

我认为您需要使用 as 关键字。检查为 (C# Reference)

关于c# - 在运行时获取对象类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7093262/

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