Tagged Questions
7
votes
5answers
4k views
populate treeview from a list of path
I'm trying to populate a treeview from a list of folder path, for example:
C:\WINDOWS\addins
C:\WINDOWS\AppPatch
C:\WINDOWS\AppPatch\MUI
C:\WINDOWS\AppPatch\MUI\040C
...
2
votes
5answers
353 views
Find shortest path between two webpages
I need to find the shortest distance between two Wikipedia pages (in "hops")
I have a method to extract all the internal wiki links on a page
I know the start destination and the end destination but ...
2
votes
2answers
786 views
How do I marshall a recursive struct to c sharp?
I have an unmanaged struct I'd like to marshal to c sharp that looks basically like this:
struct MyStruct{
/* ... some stuff ... */
int numChilds;
MyStruct *childs;
}
I believe that ...