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
Dipankar Sana
NA
51
0
Overloaded Function
May 26 2010 6:58 AM
I have two overloaded function as follows:
Public Void Test(String S)
{
//Something
}
Public Void Test(Object S)
{
//Something
}
Now if I call Test with null value, which function will get called and why ?
Test(null);
Reply
Answers (
4
)
Dynamically adding textbox on button Click
Passing function or interface pointers from C++ to C#