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
siddharth rai
NA
10
3.9k
interface in c#
Jun 13 2014 3:45 AM
"The CLR requires that interface methods be marked as virtual. If you do not explicitly mark the method as virtual in your source code, the compiler marks the method as virtual and sealed; this prevents a derived class from overriding the interface method.
If you explicitly mark the method as virtual
, the compiler marks the method as virtual (and leaves it unsealed); this allows a derived class to override the interface method.
If an interface method is sealed, a derived class cannot override the method. However, a derived class can re-inherit the same interface and can provide its own implementation for the interface’s methods.
"
please i need explanation of some point which is underline in above paragraph .
if we can not declare interface method as virtual then what is the meaning of these line "
If you explicitly mark the method as virtual
, the compiler marks the method as virtual (and leaves it unsealed); this allows a derived class to override the interface method
"
Reply
Answers (
2
)
How To get Value Between Two drop down list
Interface in c#