Click here to Skip to main content
15,898,899 members
Home / Discussions / C#
   

C#

 
GeneralRe: Set Time outs on Serial Port Pin
Member 1206160029-Sep-15 6:25
Member 1206160029-Sep-15 6:25 
Questionhow send *.xlsx file as an attachment? Pin
Member 1162226629-Sep-15 1:33
Member 1162226629-Sep-15 1:33 
AnswerRe: how send *.xlsx file as an attachment? Pin
Dave Kreskowiak29-Sep-15 1:50
mveDave Kreskowiak29-Sep-15 1:50 
AnswerRe: how send *.xlsx file as an attachment? Pin
Richard Deeming29-Sep-15 2:20
mveRichard Deeming29-Sep-15 2:20 
GeneralMessage Closed Pin
29-Sep-15 2:49
Member 1162226629-Sep-15 2:49 
QuestionTileview Gridcontrol Pin
Member 1201862629-Sep-15 0:32
Member 1201862629-Sep-15 0:32 
AnswerRe: Tileview Gridcontrol Pin
CHill6029-Sep-15 0:58
mveCHill6029-Sep-15 0:58 
QuestionOpen Source PDF VIewer in Winform Pin
Anthony Fernando28-Sep-15 21:20
professionalAnthony Fernando28-Sep-15 21:20 
AnswerRe: Open Source PDF VIewer in Winform Pin
Richard MacCutchan28-Sep-15 21:34
mveRichard MacCutchan28-Sep-15 21:34 
GeneralRe: Open Source PDF VIewer in Winform Pin
Anthony Fernando28-Sep-15 21:55
professionalAnthony Fernando28-Sep-15 21:55 
AnswerRe: Open Source PDF VIewer in Winform Pin
Pete O'Hanlon28-Sep-15 21:35
mvePete O'Hanlon28-Sep-15 21:35 
GeneralRe: Open Source PDF VIewer in Winform Pin
Anthony Fernando28-Sep-15 21:53
professionalAnthony Fernando28-Sep-15 21:53 
AnswerRe: Open Source PDF VIewer in Winform Pin
Garth J Lancaster28-Sep-15 21:36
professionalGarth J Lancaster28-Sep-15 21:36 
GeneralRe: Open Source PDF VIewer in Winform Pin
Anthony Fernando28-Sep-15 21:54
professionalAnthony Fernando28-Sep-15 21:54 
GeneralRe: Open Source PDF VIewer in Winform Pin
Garth J Lancaster28-Sep-15 23:42
professionalGarth J Lancaster28-Sep-15 23:42 
SuggestionRe: Open Source PDF VIewer in Winform Pin
Richard Deeming29-Sep-15 2:18
mveRichard Deeming29-Sep-15 2:18 
GeneralRe: Open Source PDF VIewer in Winform Pin
Garth J Lancaster29-Sep-15 14:21
professionalGarth J Lancaster29-Sep-15 14:21 
AnswerRe: Open Source PDF VIewer in Winform Pin
Gerry Schmitz30-Sep-15 9:52
mveGerry Schmitz30-Sep-15 9:52 
Questionasync and await concept Pin
Anil Sharma198328-Sep-15 20:29
professionalAnil Sharma198328-Sep-15 20:29 
AnswerRe: async and await concept Pin
Pete O'Hanlon28-Sep-15 21:05
mvePete O'Hanlon28-Sep-15 21:05 
How long would you expect it to complete in? You have 8 seconds worth of operation in there. I assume that you think that dowork will happen at the same time as DoAnotherWork. That's not the way that await operates. It's not, despite what you may think, something that pushes an operation off to another thread and continues processing in that thread - instead, it suspends the operation of the current method until the awaited operation completes. So, you end up with an 8 second delay.
GeneralRe: async and await concept Pin
Anil Sharma198328-Sep-15 21:13
professionalAnil Sharma198328-Sep-15 21:13 
GeneralRe: async and await concept Pin
Pete O'Hanlon28-Sep-15 21:16
mvePete O'Hanlon28-Sep-15 21:16 
GeneralRe: async and await concept Pin
Anil Sharma198328-Sep-15 21:26
professionalAnil Sharma198328-Sep-15 21:26 
AnswerRe: async and await concept Pin
Agent__00728-Sep-15 23:19
professionalAgent__00728-Sep-15 23:19 
AnswerRe: async and await concept Pin
F-ES Sitecore29-Sep-15 1:02
professionalF-ES Sitecore29-Sep-15 1:02 

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.