What is Exception?
How it will come into picture while program is running?
How many Exceptions are supported by the C#?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manish Kumar ChoudharyPosted Nov 24, 2014, 3:34 AM
Hi Navratna Pawale,
Read following links it might help you
http://www.csharp-station.com/Tutorial/CSharp/lesson15
http://www.codeproject.com/Articles/125470/Exception-Handling-for-C-Beginners
Sahil SharmaPosted Oct 9, 2014, 2:39 AM
Udaya kumarPosted Oct 9, 2014, 2:17 AM
Wim SturkenboomPosted Oct 9, 2014, 1:39 AM
http://msdn.microsoft.com/en-us/library/system.exception%28v=vs.110%29.aspx
You can also define your own exceptions, so basically the number of different 'types' is unlimited.
Munesh SharmaPosted Oct 9, 2014, 12:22 AM
Mohseen JamalPosted Oct 8, 2014, 8:33 PM
Any such error or event at runtime if not handled in code is thrown as exception.
Few exception that i have come across are
NullReferenceException
InvalidOperationException
ArgumentNullException
IndexOutofRangeException
ArgumentException
ExternalException.
Please reply to make this answer better.