No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
You will work better with Linq for XML; it is simpler and allows to use IEnumerable Linq extensions.
I've not oppended the visio file, but it seems to be a little mess with foreign keys... remember that when you reference a table with a foreig key contraint it must be UNIQUE (or PK) in the referenced table. I think one of the things you want to check is …
... or you haven't commit the last insert; it usually happens when debugging even to experimented programmers!!!
No matter how big the constants are; thik about sorting algorithms: if you need to sort an array of less than 10 elements a bubble sort (On2) will do better work than quick sort O(nlogn), and it is specially true with insertion sort O(n2), as the move instructions which takes …
I've written a very simple recursive parser which reads the input from a StringReader (it's so simple that it doesn't need even a StreamReader); now I want to add more accurate error reporting capabilities, and I find I can't access the actual position of the input where the error happens. …
The End.
Cesc_1