Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how do you do exception management

Answers were Sorted based on User's Feedback



how do you do exception management..

Answer / matt s

try - catch - finally. Catch most specific exceptions
first.

Is This Answer Correct ?    21 Yes 2 No

how do you do exception management..

Answer / manish agrahari

try
{
//try and do something here...
}
catch (SomeExeption ex)
{
//Handle the exception and take appropriate action
}
finally
{
//This code will *always* run irrespective if you have
//an exception or not. Usually this is some clean up of
//some sort though.
}

Is This Answer Correct ?    15 Yes 1 No

how do you do exception management..

Answer / hari

Try- Catch - Finally.

Is This Answer Correct ?    11 Yes 1 No

how do you do exception management..

Answer / bobby

try
catch
finally
Catch most specific exceptions
first.

Is This Answer Correct ?    5 Yes 2 No

Post New Answer

More C Sharp Interview Questions

What is namespace in oop?

0 Answers  


Is string a class in c#?

0 Answers  


What is a three-tier application.

0 Answers   Siebel,


What is delay signing..??

1 Answers   HCL,


What is iqueryable in linq?

0 Answers  


Is null c# operator?

0 Answers  


if we inherit class in stack so object of stack will store in stack or heap? as class a { int s; public aa(){} } stack mystack:a { } mystack obj; ans: about obj

1 Answers  


What is attribute c#?

0 Answers  


Does c# support multiple inheritance (mi)?

0 Answers  


What is thread and explain states of a thread in c#?

0 Answers  


Is type nullable c#?

0 Answers  


If a class is having 4 variables namely type double,type integer,type string,type decimal. If we create an instance of that class those variables which gets into this instance are value types or reference types?

4 Answers   Kanbay,


Categories