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
Satish Sanaboyina
NA
85
3k
abstract class method
Mar 15 2018 12:20 PM
in abstract class if we take abstract method&child class have one method with same method name how can we clall base class method?
public abstract class project
{
public void m1()
{
console.writeline("this is base class method");
}
}
public class miniproject:project
{
public void m1()
{
console.writeline("this is child class method");
}
}
how can we call base class?
Reply
Answers (
4
)
difference keywords
Move models to DAL