Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
QuestionQuestion in principal regarding writing an Outlook Plugin Pin
Jim60718-May-18 0:35
Jim60718-May-18 0:35 
AnswerRe: Question in principal regarding writing an Outlook Plugin Pin
Eddy Vluggen18-May-18 1:23
professionalEddy Vluggen18-May-18 1:23 
GeneralRe: Question in principal regarding writing an Outlook Plugin Pin
Jim60718-May-18 1:39
Jim60718-May-18 1:39 
GeneralRe: Question in principal regarding writing an Outlook Plugin Pin
Eddy Vluggen18-May-18 13:13
professionalEddy Vluggen18-May-18 13:13 
AnswerRe: Question in principal regarding writing an Outlook Plugin Pin
Gerry Schmitz18-May-18 8:14
mveGerry Schmitz18-May-18 8:14 
QuestionApp pool is crashing due to memory leakage Pin
Anoop Mehra17-May-18 18:22
Anoop Mehra17-May-18 18:22 
GeneralRe: App pool is crashing due to memory leakage Pin
Randor 17-May-18 18:45
professional Randor 17-May-18 18:45 
AnswerRe: App pool is crashing due to memory leakage Pin
OriginalGriff17-May-18 20:04
mveOriginalGriff17-May-18 20:04 
As Randor says, Exception code 0xc00000fd is a stack overflow, not a memory leak - always Google exception codes if you don't know what they mean.

And there is only really one way to cause a stack overflow in a C# app: recursive code.
So start by looking through your code to find what might be recursing slowly - and I do mean slowly, if it's taking days then it's really slow - the stack is normally only around one megabyte, so it doesn't take much for a wildly recursing app to overflow it.

We can't do that for you, and the timescale involved makes the debugger less than practical so you are going to have to fall back on the old ways and add logging code to your app to find out where it enters a method, and doesn't exit before the method is called again. Hopefully, your app is written in a well structured way and that won't be too complicated.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!

GeneralRe: App pool is crashing due to memory leakage Pin
Anoop Mehra17-May-18 22:59
Anoop Mehra17-May-18 22:59 
GeneralRe: App pool is crashing due to memory leakage Pin
OriginalGriff17-May-18 23:26
mveOriginalGriff17-May-18 23:26 
Questionc# array Pin
swathiii15-May-18 21:00
swathiii15-May-18 21:00 
SuggestionRe: c# array Pin
Richard MacCutchan15-May-18 21:30
mveRichard MacCutchan15-May-18 21:30 
AnswerRe: c# array Pin
OriginalGriff15-May-18 21:34
mveOriginalGriff15-May-18 21:34 
GeneralRe: c# array Pin
swathiii15-May-18 21:50
swathiii15-May-18 21:50 
GeneralRe: c# array Pin
OriginalGriff15-May-18 21:58
mveOriginalGriff15-May-18 21:58 
GeneralRe: c# array Pin
Mycroft Holmes15-May-18 23:16
professionalMycroft Holmes15-May-18 23:16 
GeneralRe: c# array Pin
OriginalGriff15-May-18 23:38
mveOriginalGriff15-May-18 23:38 
GeneralRe: c# array Pin
Pete O'Hanlon16-May-18 0:56
mvePete O'Hanlon16-May-18 0:56 
GeneralRe: c# array Pin
OriginalGriff16-May-18 1:14
mveOriginalGriff16-May-18 1:14 
GeneralRe: c# array Pin
Pete O'Hanlon16-May-18 2:18
mvePete O'Hanlon16-May-18 2:18 
GeneralRe: c# array Pin
Eddy Vluggen16-May-18 1:10
professionalEddy Vluggen16-May-18 1:10 
GeneralRe: c# array Pin
Dave Kreskowiak16-May-18 2:19
mveDave Kreskowiak16-May-18 2:19 
GeneralRe: c# array Pin
Kevin Marois16-May-18 5:40
professionalKevin Marois16-May-18 5:40 
GeneralRe: c# array Pin
Rob Philpott17-May-18 6:18
Rob Philpott17-May-18 6:18 
QuestionSolution Explorer > FOLDER > Text Files Pin
Member 1374647813-May-18 23:46
Member 1374647813-May-18 23:46 

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.