gpt4 book ai didi

c# - 一个方法如何只包含一个 NotImplementedException 并且仍然运行而不抛出?

转载 作者:行者123 更新时间:2023-11-30 19:45:39 27 4
gpt4 key购买 nike

如果我在 Reflector 中检查 FieldInfo.SetValueDirect它看起来如下:

C#、.NET 4.0:

[CLSCompliant(false)]
public virtual void SetValueDirect(TypedReference obj, object value)
{
throw new NotSupportedException(Environment.GetResourceString("NotSupported_AbstractNonCLS"));
}

作为 IL:

.method public hidebysig newslot virtual instance void SetValueDirect(valuetype System.TypedReference obj, object 'value') cil managed
{
.custom instance void System.CLSCompliantAttribute::.ctor(bool) = { bool(false) }
.maxstack 8
L_0000: ldstr "NotSupported_AbstractNonCLS"
L_0005: call string System.Environment::GetResourceString(string)
L_000a: newobj instance void System.NotSupportedException::.ctor(string)
L_000f: throw
}

但是,如果我运行以下代码,它就可以正常工作

// test struct:
public struct TestFields
{
public int MaxValue;
public Guid SomeGuid; // req for MakeTypeRef, which doesn't like primitives
}


[Test]
public void SettingFieldThroughSetValueDirect()
{

TestFields testValue = new TestFields { MaxValue = 1234 };

FieldInfo info = testValue.GetType().GetField("MaxValue");
Assert.IsNotNull(info);

// TestFields.SomeGuid exists as a field
TypedReference reference = TypedReference.MakeTypedReference(
testValue,
new [] { fields.GetType().GetField("SomeGuid") });

int value = (int)info.GetValueDirect(reference, );
info.SetValueDirect(reference, 4096);

// assert that this actually worked
Assert.AreEqual(4096, fields.MaxValue);

}

没有抛出错误。 GetValueDirect也是如此.我基于资源名称的猜测是,仅当代码必须为 CLSCompliant 时才会抛出此消息。 ,但是方法的主体在哪里?或者,换句话说,我如何反射(reflect)方法的实际主体?

最佳答案

这是一个虚方法。据推测,Type.GetField() 正在返回具有实际实现的派生 类型 - 尝试打印 info.GetType()。 (我刚刚在我的盒子上试过,它显示了 System.RtFieldInfo 例如。)

关于c# - 一个方法如何只包含一个 NotImplementedException 并且仍然运行而不抛出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9927137/

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