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
Saineshwar Bageri
82
23.5k
24m
I have 2 methods with the same name, Tover(string a, int b)
May 20 2014 10:49 AM
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Generics
{
public class TestOverloading
{
public void Tover(string a, int b)
{
}
public void Tover(int a, string b)
{
}
static void Main(string[] args)
{
TestOverloading tx = new TestOverloading();
}
}
}
I have 2 methods with the same name,
Tover(string a, int b)
and another method
Tover(int a, string b)
. Are these methods doing method overloading or not ?
Reply
Answers (
1
)
Grouping is not working for my kendo listview
List Both Local And Network Drives With Full Details