Tagged Questions
2
votes
9answers
2k views
When to use the Continue keyword | C#
Recently I was going through an open-source project and although I have been developing for several years in .NET, I hadn't stumbled across the continue keyword before.
What are some best practices ...
2
votes
5answers
397 views
Linq to sql - delete and if fails continue
If I have a table like:
StudentId | ... | SchoolId
___________|_____|__________
1 | ... | SchoolA
2 | ... | SchoolA
3 | ... | SchoolB
...
And I want to delete a list of ...
2
votes
8answers
4k views
is there a way to continue an exception in c#?
When an unexpected exception occurs in your program (in the debugger). Sometimes you just want to skip it since killing the program at that point is more harmful than continuing. Or you just want to ...