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
Hemalatha Sunnapu
NA
169
20k
Interface,(multiple Inheritance)which one gets priority?
Jul 6 2018 11:49 AM
namespace Assembly
{
interface I1
{
void Function();
}
interface I2
{
void Function();
}
class Implementation:I1,I2
{
public void Function()
{
Console.WriteLine("interface function is defined in class Implementation");
}
static void Main()
{
Implementation object1 = new Implementation();
object1.Function();
}
}
}
//NOW MY QUESTION IS...
Which interface Function is considered at the time of calling either I1 or I2?
Reply
Answers (
2
)
Multiple Table fetch record in Stored Procedure Repository
What is the format of a SQLConnection connection string?