YogiCoder8888

Results 3 issues of YogiCoder8888

I have a .Net 8 Console App and when the debugger executes Debug.Writeline("...") the App exits with no errors or exception thrown. I am using VS Codium on Windows 11....

I have a .Net 8 Console App and when the debugger executes Debug.Writeline("...") the App exits with no errors or exception thrown. I am using VS Codium on Windows 11....

I serialized a SortedList with the follow code: ``` var data = new SortedList(); //.. code to populate data using (var fs = new FileStream(filepath, FileMode.Create)) { await MemoryPackSerializer.SerializeAsync(fs, data);...