Click here to Skip to main content
16,004,778 members
Home / Discussions / C#
   

C#

 
QuestionImplementing Timer Functionality in Online Test Application Pin
jjinagavenkatesh23-Jun-09 1:38
jjinagavenkatesh23-Jun-09 1:38 
AnswerRe: Implementing Timer Functionality in Online Test Application Pin
Gary Stafford23-Jun-09 15:39
Gary Stafford23-Jun-09 15:39 
QuestionLabel issue in Vista Pin
musefan23-Jun-09 1:18
musefan23-Jun-09 1:18 
AnswerRe: Label issue in Vista Pin
Christian Graus23-Jun-09 1:24
protectorChristian Graus23-Jun-09 1:24 
GeneralRe: Label issue in Vista Pin
musefan23-Jun-09 1:30
musefan23-Jun-09 1:30 
QuestionWhat's the best collection Pin
CodingLover23-Jun-09 0:56
CodingLover23-Jun-09 0:56 
AnswerRe: What's the best collection Pin
Christian Graus23-Jun-09 1:01
protectorChristian Graus23-Jun-09 1:01 
AnswerRe: What's the best collection Pin
DaveyM6923-Jun-09 1:10
professionalDaveyM6923-Jun-09 1:10 
AFAIK there isn't one. You can always create your own and use new a new Add method - something like
public class MyList<T> : List<T>
{
    public new void Add(T item)
    {
        if (!Contains(item))
            base.Add(item);
    }
}
You'll need to do something similar for AddRange, and keep track of any changing items to make sure they don't create duplicates.

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

AnswerRe: What's the best collection Pin
kb-boxer23-Jun-09 1:53
kb-boxer23-Jun-09 1:53 
AnswerRe: What's the best collection Pin
Rob Philpott23-Jun-09 2:16
Rob Philpott23-Jun-09 2:16 
AnswerRe: What's the best collection Pin
Mirko198023-Jun-09 2:17
Mirko198023-Jun-09 2:17 
Question[Message Deleted] Pin
yams251023-Jun-09 0:36
yams251023-Jun-09 0:36 
AnswerRe: WPF.... GRID.... !! am lost Pin
Christian Graus23-Jun-09 0:57
protectorChristian Graus23-Jun-09 0:57 
AnswerRe: [Message Deleted] Pin
EliottA23-Jun-09 3:32
EliottA23-Jun-09 3:32 
QuestionWinRTP on .NET C# Platform for streaming Pin
ray_ronnaret23-Jun-09 0:09
ray_ronnaret23-Jun-09 0:09 
QuestionMS Chart - Problem to display the records in Range Column Chart Pin
Jegansinna23-Jun-09 0:01
Jegansinna23-Jun-09 0:01 
QuestionDatagridview [modified] Pin
mjelten22-Jun-09 23:55
mjelten22-Jun-09 23:55 
QuestionA better way Pin
Sevententh22-Jun-09 23:44
Sevententh22-Jun-09 23:44 
AnswerRe: A better way Pin
Christian Graus23-Jun-09 1:00
protectorChristian Graus23-Jun-09 1:00 
AnswerRe: A better way Pin
dan!sh 23-Jun-09 1:02
professional dan!sh 23-Jun-09 1:02 
AnswerRe: A better way Pin
kb-boxer23-Jun-09 2:04
kb-boxer23-Jun-09 2:04 
GeneralRe: A better way Pin
Sevententh23-Jun-09 3:57
Sevententh23-Jun-09 3:57 
GeneralRe: A better way Pin
S. Senthil Kumar23-Jun-09 6:26
S. Senthil Kumar23-Jun-09 6:26 
GeneralRe: A better way Pin
Sevententh6-Oct-09 0:02
Sevententh6-Oct-09 0:02 
QuestionHow to check whether PC is working with UPS power? Pin
sujithkumarsl22-Jun-09 23:37
sujithkumarsl22-Jun-09 23:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.