Click here to Skip to main content
15,917,859 members
Home / Discussions / C#
   

C#

 
GeneralRe: Web Services Pin
Paul Hutchinson11-Mar-02 5:59
Paul Hutchinson11-Mar-02 5:59 
Generalhelp about clipboard Pin
Hesham Amin10-Mar-02 6:05
Hesham Amin10-Mar-02 6:05 
GeneralRe: help about clipboard Pin
Domenic Denicola10-Mar-02 9:24
Domenic Denicola10-Mar-02 9:24 
GeneralRe: help about clipboard Pin
James T. Johnson10-Mar-02 9:50
James T. Johnson10-Mar-02 9:50 
GeneralRe: help about clipboard Pin
Domenic Denicola10-Mar-02 13:11
Domenic Denicola10-Mar-02 13:11 
GeneralRe: help about clipboard Pin
Hesham Amin11-Mar-02 21:46
Hesham Amin11-Mar-02 21:46 
General.NET Collections Pin
9-Mar-02 15:49
suss9-Mar-02 15:49 
GeneralRe: .NET Collections Pin
James T. Johnson9-Mar-02 20:46
James T. Johnson9-Mar-02 20:46 
mohn3310 wrote:
Any ideas as to why they haven't included it in the Framework?

Good question, it does seem odd that it isn't there. You could easily create your own version of it though. If you don't know how to create a linked list there are many places on the web that will give you code for doing it Smile | :)

mohn3310 wrote:
Are the .NET Enumerators the same as the Java Iterators?

Enumerators in .NET are used to go through a collection an element at a time.

IEnumerator ie = myCollection.GetEnumerator();
while(ie.MoveNext) {
  System.Console.WriteLine("object: " + ie.Current.ToString());
}
or if you are using C# you can use foreach
foreach(object foo in myCollection) {
  System.Console.WriteLine("object: " + foo.ToString();
}
Simple, eh? Smile | :)

HTH,

James

Sonork ID: 100.11138 - Hasaki
"Smile your little smile, take some tea with me awhile.
And every day we'll turn another page.
Behind our glass we'll sit and look at our ever-open book,
One brown mouse sitting in a cage."
"One Brown Mouse" from Heavy Horses, Jethro Tull 1978

GeneralRe: .NET Collections Pin
mohn331010-Mar-02 7:11
mohn331010-Mar-02 7:11 
GeneralRe: .NET Collections Pin
James T. Johnson10-Mar-02 14:21
James T. Johnson10-Mar-02 14:21 
QuestionDHTML control in windows.forms? Pin
9-Mar-02 14:59
suss9-Mar-02 14:59 
AnswerRe: DHTML control in windows.forms? Pin
James T. Johnson9-Mar-02 20:28
James T. Johnson9-Mar-02 20:28 
GeneralRe: DHTML control in windows.forms? Pin
13-Mar-02 2:04
suss13-Mar-02 2:04 
Questionwhen will the JIT run? Pin
9-Mar-02 0:18
suss9-Mar-02 0:18 
AnswerRe: when will the JIT run? Pin
James T. Johnson9-Mar-02 13:24
James T. Johnson9-Mar-02 13:24 
GeneralRe: when will the JIT run? Pin
9-Mar-02 15:02
suss9-Mar-02 15:02 
GeneralC# properties Pin
8-Mar-02 12:27
suss8-Mar-02 12:27 
GeneralRe: C# properties Pin
Anand Amirineni8-Mar-02 13:22
Anand Amirineni8-Mar-02 13:22 
GeneralRe: C# properties Pin
Sito Dekker9-Mar-02 0:34
Sito Dekker9-Mar-02 0:34 
GeneralFTP Upload and Download Pin
BLaZiNiX8-Mar-02 8:57
BLaZiNiX8-Mar-02 8:57 
GeneralRe: FTP Upload and Download Pin
Schnemar9-Mar-02 1:32
Schnemar9-Mar-02 1:32 
GeneralIntercept up and down arrow keys in datagrid Pin
kyledunn8-Mar-02 7:01
kyledunn8-Mar-02 7:01 
GeneralRe: Intercept up and down arrow keys in datagrid Pin
James T. Johnson9-Mar-02 13:28
James T. Johnson9-Mar-02 13:28 
GeneralRe: Intercept up and down arrow keys in datagrid Pin
9-Mar-02 15:37
suss9-Mar-02 15:37 
GeneralRe: Intercept up and down arrow keys in datagrid Pin
James T. Johnson9-Mar-02 21:06
James T. Johnson9-Mar-02 21:06 

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.