PEAPI

Catch Constructor 

Create a new catch clause

[Visual Basic]
Public Sub New( _
   ByVal except As PEAPI.Class, _
   ByVal handlerStart As PEAPI.CILLabel, _
   ByVal handlerEnd As PEAPI.CILLabel _
)
[C#]
public Catch(
   Class except,
   CILLabel handlerStart,
   CILLabel handlerEnd
);

Parameters

except
the exception to be caught
handlerStart
start of the handler code
handlerEnd
end of the handler code

See Also

Catch Class | Catch Members | PEAPI Namespace