-2
votes
4answers
211 views
Try/Catch block not catching Exception
I have a statement inside a try/catch block, but the exception is not getting caught. Can anyone explain?
Exception Details:
System.NullReferenceException: Object
reference not set to an …
8
votes
2answers
232 views
Is try/catch around whole C# program possible?
A C# program is invoked by:
Application.Run (new formClass ());
I'd like to put a try/catch around the whole thing to trap any uncaught exceptions. When I put it around this Run method, exceptions …
0
votes
1answer
66 views
TeamCity 4.5 not recognizing trycatch element in nant script
Our team recently upgraded to TeamCity 4.5.4 but we're having trouble with TeamCity running our nant build scripts.
We now get an error message saying: Invalid element <trycatch>. Unknown task …
1
vote
3answers
616 views
Convert String to Double - VB
Is there an efficient method in VB to check if a string can be converted to a double?
I'm currently doing this by trying to convert the string to a double and then seeing if it throws an exception. …
12
votes
7answers
1k views
How do exceptions work (behind the scenes) in c++
I keep seeing people say that exceptions are slow but I never see any proof. So instead of asking if they are I will ask how do exceptions work behind the scene so I can make a decisions of when to …
1
vote
3answers
247 views
Is there a better way to get visual studio to ignore try/catch in debug mode
I want the designer to catch the error when I am debugging and I want the user to see my friendly message if an error occurs for them. I know I can acomplish this with the following:
#If Debug=False …
3
votes
8answers
993 views
C# Do I need TRY/CATCH in order to throw?
If all I want to do is throw the exception up a level when it occurs?
private void TryCatch()
{
try
{
foo();
}
catch (Exception ex)
{
throw;
}
}
private void …
