Michael Jordan
Michael Jordan
``` ``` ```ViewList``` is an ```ObservableCollection``` The ```ItemSelectionChanging``` event is firing but the ```ItemSelectionChanged''' does not.
Trying to install Wireshark on a windows 10 x64 machine. End up with a 255 error during the npcap installation and hang on the line ```Could not load: C:\Users\mjordan\AppData\Local\Temp\nsdDB25.tmp\SimpleSC.dll```. I...
Upgraded existing examples to .NET 4.8 and added .NET 5 examples
private static MemoryStream GetClientFile(string file) { MemoryStream ms = new MemoryStream(); using (ZipInputStream zip = new ZipInputStream(file)) { ZipEntry ze = zip.GetNextEntry(); while (!(ze is null)) { if (ze.FileName.EndsWith("tag to...
I'm using 5.0.2 version on .NET 8. ``` using LiteDB; #pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously namespace LiteDbQueryingTest { internal class Program...