I have an exception object.
I want to do a select case to perform certain activities in cases when the exception is of a specific type.
So how would I structure such a SELECT CASE block?
For instance:
Obviously, the above doesn't work but you get the idea...VB Code:
Select Case ex Case System.StackOverflowException Case System.ObjectDisposedException End Select





Reply With Quote