Click here to Skip to main content
15,904,287 members
Home / Discussions / C#
   

C#

 
Questionbest way to program a huge xml file Pin
brsecu8-Aug-07 9:52
brsecu8-Aug-07 9:52 
AnswerRe: best way to program a huge xml file Pin
Judah Gabriel Himango8-Aug-07 10:36
sponsorJudah Gabriel Himango8-Aug-07 10:36 
GeneralRe: best way to program a huge xml file Pin
brsecu8-Aug-07 10:47
brsecu8-Aug-07 10:47 
GeneralRe: best way to program a huge xml file Pin
Judah Gabriel Himango8-Aug-07 18:18
sponsorJudah Gabriel Himango8-Aug-07 18:18 
GeneralRe: best way to program a huge xml file Pin
brsecu9-Aug-07 5:20
brsecu9-Aug-07 5:20 
AnswerRe: best way to program a huge xml file Pin
Jimmy Zhang23-Aug-09 13:21
Jimmy Zhang23-Aug-09 13:21 
Questionentering data in same row inmore than one attempt Pin
richieis8-Aug-07 9:40
richieis8-Aug-07 9:40 
AnswerRe: entering data in same row inmore than one attempt Pin
Judah Gabriel Himango8-Aug-07 10:30
sponsorJudah Gabriel Himango8-Aug-07 10:30 
GeneralRe: entering data in same row inmore than one attempt Pin
richieis9-Aug-07 8:11
richieis9-Aug-07 8:11 
QuestionPoint Cloud Rotation Pin
GreenGiant838-Aug-07 8:58
GreenGiant838-Aug-07 8:58 
AnswerRe: Point Cloud Rotation Pin
Judah Gabriel Himango8-Aug-07 9:12
sponsorJudah Gabriel Himango8-Aug-07 9:12 
GeneralRe: Point Cloud Rotation Pin
GreenGiant838-Aug-07 11:12
GreenGiant838-Aug-07 11:12 
GeneralRe: Point Cloud Rotation Pin
Judah Gabriel Himango8-Aug-07 18:16
sponsorJudah Gabriel Himango8-Aug-07 18:16 
GeneralRe: Point Cloud Rotation Pin
GreenGiant839-Aug-07 3:33
GreenGiant839-Aug-07 3:33 
GeneralRe: Point Cloud Rotation Pin
Judah Gabriel Himango9-Aug-07 4:52
sponsorJudah Gabriel Himango9-Aug-07 4:52 
Questionsorted list question Pin
crash8938-Aug-07 8:49
crash8938-Aug-07 8:49 
AnswerRe: sorted list question Pin
Luc Pattyn8-Aug-07 9:05
sitebuilderLuc Pattyn8-Aug-07 9:05 
GeneralRe: sorted list question Pin
crash8938-Aug-07 15:18
crash8938-Aug-07 15:18 
GeneralRe: sorted list question Pin
crash8938-Aug-07 15:42
crash8938-Aug-07 15:42 
GeneralRe: sorted list question Pin
Luc Pattyn8-Aug-07 15:52
sitebuilderLuc Pattyn8-Aug-07 15:52 
GeneralRe: sorted list question Pin
crash8938-Aug-07 21:28
crash8938-Aug-07 21:28 
GeneralRe: sorted list question Pin
Luc Pattyn9-Aug-07 0:00
sitebuilderLuc Pattyn9-Aug-07 0:00 
Hi,

if you have .NET 2.0 or better, you can use generics such as SortedList<string,int>
and that should allow you to do list[name]++;
so it gives you the same base idea, a more readable source, and it eliminates the
need to cast to int, so it does save some CPU cycles.

I trust that is what you meant, but if so the HTML eater has swallowed it.

list.Keys is the collection that holds all the key values, I guess you could feed it directly
into a ComboBox through its DataSource property.

If you need to know more, please read up on it either on your local MSDN that came with
Visual Studio, or on http://msdn2.microsoft.com[^]

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]


this weeks tips:
- make Visual display line numbers: Tools/Options/TextEditor/...
- show exceptions with ToString() to see all information
- before you ask a question here, search CodeProject, then Google


QuestionThe specified format name is invalid Pin
ramdil8-Aug-07 8:13
ramdil8-Aug-07 8:13 
AnswerRe: The specified format name is invalid Pin
PIEBALDconsult8-Aug-07 15:30
mvePIEBALDconsult8-Aug-07 15:30 
GeneralRe: The specified format name is invalid Pin
ramdil8-Aug-07 22:15
ramdil8-Aug-07 22:15 

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.