blah blah blah is here! blah blah » Close

0
votes
1 answers

Do methods create garbage?

This is probably the third time Ive asked if something in C# creates garbage. :P Ive read a couple tutorials but they explain only about using keyword 'new'. Does this mean that garbage is ONLY created when 'new' is used? I ask in tit ...

1
votes
1 answers

Read a Text file and put in a array( continue_6)

Dear Vulpes, I tried to read the data here, but i got an error would you please kindly help me again... I want to put the data coming after *'DY ' 62500 'REAL'* to an array named DY, and do so for DX. When I am using the code e ...

1
votes
2 answers

Converting an array to an comma seperated string

If I have an arraylist like: [code] ArrayList al = new ArrayList(); al.Add("hello"); al.Add("asdf"); al.Add("blah"); [/code] I want to convert the array to a comma seperated string like: [code] ...

2
votes
1 answers

Creating a hashtable of name/value pairs from an xml file

I have an xml file that looks like: [code] <root> <label key="home">Home</label> <label key="quit">Quit</label> <label key="start">Start</label> </root> ...

Feedback