I need to clear this warning :
try
{
doSomething()
}
catch (AmbiguousMatchException MyException)
{
doSomethingElse()
}
The complier is telling me : The variable 'MyException' is declared but never used
How can I fix this.
Thanks
|
I need to clear this warning :
The complier is telling me : The variable 'MyException' is declared but never used How can I fix this. Thanks |
|||
|
|
|
1- You can remove it like this:
2- Use warning disable like this:
Other familiar warning disable
|
|||||||||||||
|
|
You declare a name for the exception, MyException, but you never do anything with it. Since it's not used, the compiler points it out. You can simply remove the name.
|
|||
|
|
|
You can simply write:
and omit the exception name if you won't be using it in the catch clause. |
|||
|
|
The trouble is, you aren't using your variable |
|||
|
|
|
You could write the exception out to a log if you've got one running. Might be useful for tracking down any problems.
|
|||
|
|
|
|||||
|