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
Maha
NA
0
325.9k
Step Into (F11)
Oct 5 2014 6:19 AM
If you use the Step Into in the following program. Yellow line is jump into the statement Console.WriteLine(base.GetType().Name); within the two curly brackets without going through private void k().
What is the reason for that? Problem is highlighted.
using System;
namespace contest
{
class Program
{
static void Main(string[] args)
{
B b = new B();
A a = new A();
Console.Read();
}
}
class A
{
public A()
{
k();
}
private void k()
{
Console.WriteLine(base.GetType().Name);
}
}
class B : A { }
}
Reply
Answers (
3
)
App with activation interface
how to read image in datagridview from excel sheet