| EventHelperRethrow Method  | 
            Rethrows an exception without losing stack information.
            
 
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void Rethrow(
	Exception ex
)
Public Shared Sub Rethrow ( 
	ex As Exception
)
public:
static void Rethrow(
	Exception^ ex
)
static member Rethrow : 
        ex : Exception -> unit 
Parameters
- ex
 - Type: SystemException
 
Remarks
            Copied from http://stackoverflow.com/questions/4555599/how-to-rethrow-the-inner-exception-of-a-targetinvocationexception-without-losing.
            
See Also