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
Swapnil Mache
NA
56
4.1k
ERROR "Control can not leave body of finally clause"
Jun 4 2016 6:19 AM
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test2
{
public class a
{
public int m1()
{
try
{
return 10;
}
catch (Exception e)
{
return 20;
}
finally
{
return 30;
}
}
}
class Program
{
public static void Main(string[] args)
{
a A = new a();
int i = A.m1();
// S.O.P(i);
Console.WriteLine("" + i);
Console.ReadLine();
}
}
}
Reply
Answers (
2
)
How to create a method with using http Get or Post methods
Grid View And SQL