Forcing exception Handling

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi,

Is their any way to setup VS such that it forces programmers to handle all
exception (similar to Java).

Thanks
 
Thus wrote Steve,
Hi,

Is their any way to setup VS such that it forces programmers to handle
all exception (similar to Java).

VS has nothing to do with that. But no, the CLR doesn't use checked exceptions,
nor do any of the mainstream .NET languages.

Cheers,
 
In VS.NET, at development time, you can configure your VS.NET studio to
handle exceptions in what way. Press Ctrl+Alt+E in VS.NET and then
configure the behavior on the basis of what exception is thrown.

~Sankalp
 
Back
Top