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
Sreekanth Reddy
353
4.8k
420.1k
Interface
Sep 25 2013 12:43 AM
interface Ij
{
void m();
}
class h : Ij
{
public void i()
{
Console.WriteLine("iiii");
}
public void m()
{
Console.WriteLine("mm");
}
}
class Program
{
static void Main(string[] args)
{
h obj = new h();
obj.i();
obj.m();
Console.ReadLine();
}
In the above Interface program why we need to go for Interface "Ij" ? Directly we can go for "h" know? and that too we cannot create object for interface... what is it's purpose? Please explain me friends....................... I am a learner.
Reply
Answers (
3
)
Link to file
3 4 5 makes a right-angled triangle 3 5 4 makes a right-angl