Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
GeneralRe: libvlc dll with network streaming is not working Pin
Member 1288274529-Apr-18 19:01
Member 1288274529-Apr-18 19:01 
GeneralRe: libvlc dll with network streaming is not working Pin
Jochen Arndt29-Apr-18 21:10
professionalJochen Arndt29-Apr-18 21:10 
GeneralRe: libvlc dll with network streaming is not working Pin
Member 1288274529-Apr-18 23:15
Member 1288274529-Apr-18 23:15 
GeneralRe: libvlc dll with network streaming is not working Pin
Member 128827452-May-18 19:33
Member 128827452-May-18 19:33 
QuestionTax Calculator using C# in a Cross Platform file. Pin
Aishah Alsaadi28-Apr-18 2:21
professionalAishah Alsaadi28-Apr-18 2:21 
AnswerRe: Tax Calculator using C# in a Cross Platform file. Pin
OriginalGriff28-Apr-18 2:43
mveOriginalGriff28-Apr-18 2:43 
AnswerRe: Tax Calculator using C# in a Cross Platform file. Pin
hamid1829-Apr-18 23:48
hamid1829-Apr-18 23:48 
QuestionUWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd26-Apr-18 21:07
Super Lloyd26-Apr-18 21:07 
Unfortunately stack overflow just crash / exit the program when they happen in UWP App. It can't be caught and broke into with the debugger. At least it looks like it (using Visual Studio 2017 professional).

I enabled mixed mode debugging, enabled all exception, native exceptions, managed assistance, downloaded MS symbols, etc...
Whatever I do the program gently churn along and then ... close suddenly.
All I have left is this post mortem line in the debug output:
The thread 0x1ce4 has exited with code -2147023895 (0x800703e9).

I have been scratching my head all day for that. Unfortunately, I have a few weeks of changes that were not tested and I am a bit lost as to what could cause that... Plus it might have been there before anyway...

Any idea on how to track what could be the cause of that?

As a side note my app is compiled for x64. I also tried to compile for x86. Same results.
Unfortunately there is no MSIL targets possible for UWP, apparently... (Which, I imagine, would offer better debugging regarding StackOverflow)

[EDIT]
The plot thickens though.
I just tried a simple test UWP App where I changed the constructor as follow:
public App()
{
    this.InitializeComponent();
    this.Suspending += OnSuspending;
    var u = Moo(42);
}

public static int Moo(int seed)
{
    var r = new Random(seed);
    var next = r.Next();
    if (next == 0)
        return seed;
    return Moo(next);
}
And the debugger successfully broke on my code... Somehow I have some suspicion on the UI code... but I didn't set the model at all in one test, i.e. no model or data context => no binding and update, stumped....
A new .NET Serializer
All in one Menu-Ribbon Bar
Taking over the world since 1371!


modified 28-Apr-18 12:07pm.

GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Richard MacCutchan26-Apr-18 22:47
mveRichard MacCutchan26-Apr-18 22:47 
QuestionRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 0:35
Super Lloyd27-Apr-18 0:35 
AnswerRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Richard MacCutchan27-Apr-18 2:00
mveRichard MacCutchan27-Apr-18 2:00 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 3:50
Super Lloyd27-Apr-18 3:50 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Richard MacCutchan27-Apr-18 3:53
mveRichard MacCutchan27-Apr-18 3:53 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 3:58
Super Lloyd27-Apr-18 3:58 
AnswerRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Pete O'Hanlon27-Apr-18 0:44
mvePete O'Hanlon27-Apr-18 0:44 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 3:50
Super Lloyd27-Apr-18 3:50 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Pete O'Hanlon27-Apr-18 21:34
mvePete O'Hanlon27-Apr-18 21:34 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 23:47
Super Lloyd27-Apr-18 23:47 
AnswerRe: UWP / VisualStudio 2017 and StackOverflowException Pin
BillWoodruff27-Apr-18 18:45
professionalBillWoodruff27-Apr-18 18:45 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd27-Apr-18 23:49
Super Lloyd27-Apr-18 23:49 
AnswerRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Eddy Vluggen28-Apr-18 0:01
professionalEddy Vluggen28-Apr-18 0:01 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Super Lloyd28-Apr-18 0:41
Super Lloyd28-Apr-18 0:41 
SuggestionRe: UWP / VisualStudio 2017 and StackOverflowException PinPopular
Eddy Vluggen28-Apr-18 1:07
professionalEddy Vluggen28-Apr-18 1:07 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Richard MacCutchan28-Apr-18 1:48
mveRichard MacCutchan28-Apr-18 1:48 
GeneralRe: UWP / VisualStudio 2017 and StackOverflowException Pin
Eddy Vluggen28-Apr-18 1:51
professionalEddy Vluggen28-Apr-18 1:51 

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.