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
shimab alam
NA
19
28.9k
Please find issue in below code??
Apr 5 2014 2:57 AM
public interface IEmployee
{
void Des();
}
public class CEO :IEmployee
{
public virtual void Des()
{
Console.WriteLine("I M CEO");
}
}
public class HM :IEmployee , CEO
{
public void Des()
{
}
}
Reply
Answers (
2
)
Difference between abstract method and virtual method??
Can we have class without namespace??