在探测反射器中的程序集时,我在编译器生成的类中偶然发现了一个fault关键字.
如果这个关键字,你们有没有人知道这个意思?
C#
private bool MoveNext() { bool flag; try { // [...] } fault { this.Dispose(); } return flag; }
vb.net
Private Function MoveNext() As Boolean Dim flag As Boolean Try ' [...] Fault Me.Dispose End Try Return flag End Function
解决方法
Do any of you know the meaning if this keyword?
是.它不是有效的C#,但在IL中它相当于finally,但只有在抛出异常的情况下才有效.
在C#中没有直接关联,这就是反编译器无法将其反编译为正确的C#的原因.您可以使用以下内容来模拟它:
bool success = false; try { ... stuff ... success = true; // This has to occur on all "normal" ways of exiting the // block,including return statements. } finally { if (!success) { Dispose(); } }
我在iterator block implementation details文章中提到它看起来与你的特定例子相关:)