Click here to Skip to main content
16,005,080 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help needed for Array Class Pin
Joshua Quick21-Nov-05 8:50
Joshua Quick21-Nov-05 8:50 
GeneralRe: Help needed for Array Class Pin
Nuray21-Nov-05 8:59
Nuray21-Nov-05 8:59 
GeneralRe: Help needed for Array Class Pin
Joshua Quick21-Nov-05 10:19
Joshua Quick21-Nov-05 10:19 
GeneralRe: Help needed for Array Class Pin
Nuray22-Nov-05 5:10
Nuray22-Nov-05 5:10 
GeneralRe: Help needed for Array Class Pin
Joshua Quick22-Nov-05 5:44
Joshua Quick22-Nov-05 5:44 
AnswerRe: Help needed for Array Class Pin
Robert Rohde21-Nov-05 7:57
Robert Rohde21-Nov-05 7:57 
GeneralRe: Help needed for Array Class Pin
Nuray21-Nov-05 8:57
Nuray21-Nov-05 8:57 
GeneralRe: Help needed for Array Class Pin
Robert Rohde21-Nov-05 10:32
Robert Rohde21-Nov-05 10:32 
I said CollectionBase not ArrayList. I mean something like this:

public class MyCollection : CollectionBase {
//functions like Count, RemoveAt, GetEnumerator are already implemented

//now some typesafe function...
public void Add(MyItem item){
base.InnerList.Add(item);
}
public void Remove(MyItem item){
base.InnerList.Remove(item);
}
public MyItem this[int index]{
get { (MyItem)return base.InnerList[index]; }
}

//other functions...
}

Now you have a typesafe collection where you can be sure that all contained elements are of type MyItem.
GeneralRe: Help needed for Array Class Pin
Nuray22-Nov-05 5:01
Nuray22-Nov-05 5:01 
QuestionFinding the System Idle Timer ? Pin
V3RO21-Nov-05 3:43
V3RO21-Nov-05 3:43 
QuestionProblem with blocked file access Pin
Weckmann21-Nov-05 3:42
Weckmann21-Nov-05 3:42 
AnswerRe: Problem with blocked file access Pin
S. Senthil Kumar21-Nov-05 4:34
S. Senthil Kumar21-Nov-05 4:34 
GeneralRe: Problem with blocked file access Pin
Weckmann21-Nov-05 8:32
Weckmann21-Nov-05 8:32 
QuestionHow to System Idle Timer Pin
V3RO21-Nov-05 3:34
V3RO21-Nov-05 3:34 
Question.Net client and Java server integration Pin
Lkotzer21-Nov-05 3:29
Lkotzer21-Nov-05 3:29 
QuestionPassing an argument to a Thread Pin
zaboboa21-Nov-05 3:14
zaboboa21-Nov-05 3:14 
AnswerRe: Passing an argument to a Thread Pin
S. Senthil Kumar21-Nov-05 4:38
S. Senthil Kumar21-Nov-05 4:38 
GeneralRe: Passing an argument to a Thread Pin
zaboboa21-Nov-05 7:08
zaboboa21-Nov-05 7:08 
QuestionRead Paradox Pin
albCode21-Nov-05 2:29
albCode21-Nov-05 2:29 
QuestionSaving only time from datetimepicker in Sql server Pin
majidbhutta21-Nov-05 2:20
majidbhutta21-Nov-05 2:20 
AnswerRe: Saving only time from datetimepicker in Sql server Pin
Curtis Schlak.21-Nov-05 16:54
Curtis Schlak.21-Nov-05 16:54 
AnswerRe: Saving only time from datetimepicker in Sql server Pin
PraveenRockz [ Praveen Solanki ]12-Aug-10 23:25
PraveenRockz [ Praveen Solanki ]12-Aug-10 23:25 
QuestionWindows Installer. Pin
Illegal Operation21-Nov-05 1:11
Illegal Operation21-Nov-05 1:11 
AnswerRe: Windows Installer. Pin
Curtis Schlak.21-Nov-05 17:05
Curtis Schlak.21-Nov-05 17:05 
Questionhow to add module in c#.net Pin
sarayumadhavan21-Nov-05 1:07
sarayumadhavan21-Nov-05 1:07 

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.