点击或拖拽改变大小

Functions._SequenceRecover 方法

X#
This function is automatically inserted by the compiler in a compiler generated RECOVER USING block when you have a BEGIN SEQUENCE .. END SEQUENCE in your code without RECOVER USING clause

命名空间:  XSharp.RT
程序集:  XSharp.RT (在 XSharp.RT.dll 中) 版本:2.22 GA
语法
 FUNCTION _SequenceRecover(
	u AS USUAL
) AS VOID
查看代码

参数

u
类型:__Usual
The parameter that was passed in the BREAK statement or the call to the _Break function
备注
If a REAL exception occurs then this function is NOT called. The function is only called when the (generated) RECOVER USING block is called with a value from a BREAK statement.
The default implementation of this function (in the XSharp.RT assembly) does nothing. You can override this function in your own code if you want. The function should then have the following prototype
X#
1FUNCTION _SequenceRecover(u as USUAL) AS VOID
参见