TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Smart Lucky
NA
555
639.4k
Exception
Jul 8 2011 6:16 AM
hi Dudes
Can any one tell me can try block throw the more than one exception at a time... if is possible than how can handle them....?
like below program
using System;
class Test
{
static void Main()
{
try
{
throw new DivideByZeroException();
throw new IndexOutOfRangeException();
}
catch (DivideByZeroException e)
{
Console.WriteLine(e.Message);
}
catch (IndexOutOfRangeException s)
{
Console.WriteLine(s.Message);
}
Console.ReadKey();
}
}
Reply
Answers (
2
)
SQL Query Help
BindingSource index position