Click here to Skip to main content
15,906,467 members
Home / Discussions / C#
   

C#

 
SuggestionRe: Quickly find the information on the GridView ? Pin
Matt T Heffron12-Mar-15 10:24
professionalMatt T Heffron12-Mar-15 10:24 
QuestionHow to Save changes in Dataset back to my Database Pin
David_Pollard11-Mar-15 19:24
David_Pollard11-Mar-15 19:24 
SuggestionRe: How to Save changes in Dataset back to my Database Pin
Matt T Heffron12-Mar-15 10:25
professionalMatt T Heffron12-Mar-15 10:25 
GeneralRe: How to Save changes in Dataset back to my Database Pin
David_Pollard12-Mar-15 12:36
David_Pollard12-Mar-15 12:36 
GeneralRe: How to Save changes in Dataset back to my Database Pin
David_Pollard12-Mar-15 12:54
David_Pollard12-Mar-15 12:54 
GeneralRe: How to Save changes in Dataset back to my Database Pin
Matt T Heffron12-Mar-15 13:04
professionalMatt T Heffron12-Mar-15 13:04 
Questionactivex control Pin
Member 1149283311-Mar-15 16:20
Member 1149283311-Mar-15 16:20 
QuestionMessage Removed Pin
11-Mar-15 10:22
professionalN_tro_P11-Mar-15 10:22 
AnswerRe: EntityFramework Self referencing one to many Pin
Gerry Schmitz11-Mar-15 13:02
mveGerry Schmitz11-Mar-15 13:02 
GeneralMessage Removed Pin
12-Mar-15 2:38
professionalN_tro_P12-Mar-15 2:38 
GeneralRe: EntityFramework Self referencing one to many Pin
Gerry Schmitz12-Mar-15 3:28
mveGerry Schmitz12-Mar-15 3:28 
GeneralMessage Removed Pin
12-Mar-15 4:25
professionalN_tro_P12-Mar-15 4:25 
GeneralRe: EntityFramework Self referencing one to many Pin
Gerry Schmitz12-Mar-15 4:47
mveGerry Schmitz12-Mar-15 4:47 
GeneralMessage Removed Pin
12-Mar-15 5:04
professionalN_tro_P12-Mar-15 5:04 
GeneralRe: EntityFramework Self referencing one to many Pin
Gerry Schmitz12-Mar-15 5:43
mveGerry Schmitz12-Mar-15 5:43 
QuestionTrick IIS forms authentification Pin
jonas7811-Mar-15 4:14
jonas7811-Mar-15 4:14 
AnswerRe: Trick IIS forms authentification Pin
F-ES Sitecore11-Mar-15 4:39
professionalF-ES Sitecore11-Mar-15 4:39 
GeneralRe: Trick IIS forms authentification Pin
jonas7813-Mar-15 1:51
jonas7813-Mar-15 1:51 
QuestionUpdating Code For a Newer Version Pin
Member 997225111-Mar-15 2:52
Member 997225111-Mar-15 2:52 
SuggestionRe: Updating Code For a Newer Version Pin
Richard Deeming11-Mar-15 3:04
mveRichard Deeming11-Mar-15 3:04 
QuestionGood vs Bad Pin
NJdotnetdev11-Mar-15 2:30
NJdotnetdev11-Mar-15 2:30 
AnswerRe: Good vs Bad Pin
Pete O'Hanlon11-Mar-15 2:42
mvePete O'Hanlon11-Mar-15 2:42 
They are both various shades of bad practice. You're just catching ANY exception here, without actually bothering to do anything about it. In both cases, the behaviour is the same - the loop keeps on iterating, but the reality is that you have just consumed something that has gone wrong. That is bad practice, so I would urge you to do neither case. Exceptions are thrown for a reason. Only catch them if you intend to do something with them, such as logging or you have logic in there to mitigate the effect, e.g. you might have some retry functionality that you need to use. Ignoring exceptions is the wrong thing to do.
GeneralRe: Good vs Bad Pin
NJdotnetdev11-Mar-15 2:54
NJdotnetdev11-Mar-15 2:54 
GeneralRe: Good vs Bad Pin
OriginalGriff11-Mar-15 4:15
mveOriginalGriff11-Mar-15 4:15 
GeneralRe: Good vs Bad Pin
NJdotnetdev11-Mar-15 4:19
NJdotnetdev11-Mar-15 4:19 

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.