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
behzad pakniyat
1.6k
105
10.5k
How to override Add Method of List<> ?
Jun 23 2015 2:13 PM
Hi
How to override Add Method of List<> ?
public class ccCity : List<cCity>
{
public cCity this[string name]
{
get
{
foreach (cCity item in this)
{
if (item.cvrName==name)
{
return item;
}
}
return null;
}
}
public new void Add(cBaseCVR cvr)
{
this.Add(cvr);
}
}
thanks
Reply
Answers (
1
)
read x coordinate of chart by clicking on chart
How can I get the hardware audio sample rate in C#?