Click here to Skip to main content
15,793,139 members
Home / Discussions / C#
   

C#

 
QuestionInput details in cmd via Process Pin
All Time Programming4-Feb-11 1:10
All Time Programming4-Feb-11 1:10 
AnswerRe: Input details in cmd via Process Pin
Xmen Real 4-Feb-11 2:23
professional Xmen Real 4-Feb-11 2:23 
GeneralRe: Input details in cmd via Process Pin
All Time Programming4-Feb-11 2:42
All Time Programming4-Feb-11 2:42 
AnswerRe: Input details in cmd via Process Pin
PIEBALDconsult4-Feb-11 2:48
professionalPIEBALDconsult4-Feb-11 2:48 
GeneralRe: Input details in cmd via Process Pin
All Time Programming4-Feb-11 3:44
All Time Programming4-Feb-11 3:44 
AnswerRe: Input details in cmd via Process Pin
_Erik_4-Feb-11 7:09
_Erik_4-Feb-11 7:09 
QuestionPreserve stack trace after Exception rethrow? Pin
Chesnokov Yuriy3-Feb-11 23:57
professionalChesnokov Yuriy3-Feb-11 23:57 
AnswerRe: Preserve stack trace after Exception rethrow? Pin
Wayne Gaylard4-Feb-11 0:03
professionalWayne Gaylard4-Feb-11 0:03 
You need to throw a new exception to preserve Inner Exceptions:
Try This:
C#
try
            {
                Function();
            }
            catch(Exception ex)
            {
                throw new Exception("Your new error message", ex);
            }

Hope this helps.
QuestionRe: Preserve stack trace after Exception rethrow? Pin
Chesnokov Yuriy4-Feb-11 1:38
professionalChesnokov Yuriy4-Feb-11 1:38 
AnswerRe: Preserve stack trace after Exception rethrow? Pin
Luc Pattyn4-Feb-11 1:48
sitebuilderLuc Pattyn4-Feb-11 1:48 
QuestionTeechart - change color of bar in bar chart based on values Pin
PleaseHelpCP3-Feb-11 23:49
PleaseHelpCP3-Feb-11 23:49 
QuestionEfficient way to handle search page Pin
Umair Feroze3-Feb-11 23:34
Umair Feroze3-Feb-11 23:34 
QuestionWindows program responding to win + d Pin
ayandelhi3-Feb-11 22:57
ayandelhi3-Feb-11 22:57 
AnswerRe: Windows program responding to win + d Pin
Luc Pattyn3-Feb-11 23:23
sitebuilderLuc Pattyn3-Feb-11 23:23 
GeneralRe: Windows program responding to win + d Pin
ayandelhi4-Feb-11 0:31
ayandelhi4-Feb-11 0:31 
AnswerRe: Windows program responding to win + d Pin
Luc Pattyn4-Feb-11 0:41
sitebuilderLuc Pattyn4-Feb-11 0:41 
GeneralRe: Windows program responding to win + d Pin
ayandelhi4-Feb-11 0:51
ayandelhi4-Feb-11 0:51 
QuestionC# method to restart the application Pin
ayandelhi3-Feb-11 19:56
ayandelhi3-Feb-11 19:56 
AnswerRe: C# method to restart the application Pin
Peace ON3-Feb-11 20:31
Peace ON3-Feb-11 20:31 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 20:56
ayandelhi3-Feb-11 20:56 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 21:05
ayandelhi3-Feb-11 21:05 
GeneralRe: C# method to restart the application Pin
Peace ON3-Feb-11 21:13
Peace ON3-Feb-11 21:13 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 21:18
ayandelhi3-Feb-11 21:18 
AnswerRe: C# method to restart the application Pin
Peace ON3-Feb-11 21:20
Peace ON3-Feb-11 21:20 
GeneralRe: C# method to restart the application Pin
ayandelhi3-Feb-11 21:30
ayandelhi3-Feb-11 21:30 

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.