Results 105 issues of NN

``` --------------------------- Error --------------------------- Type 'Microsoft.Office.Core.MsoSyncEventType, 2df8d04c-5bfa-101b-bde5-00aa0044de52, Version=2.8.0.0, Culture=neutral, PublicKeyToken=null' was not loaded in the ReflectionOnly context but the AssemblyBuilder was created as AssemblyBuilderAccess.ReflectionOnly. --------------------------- OK --------------------------- ```

There is no interface for [System.Net.NetworkInformation.Ping](https://docs.microsoft.com/en-us/dotnet/api/system.net.networkinformation.ping?view=netcore-3.1)

https://github.com/microsoft/cpprestsdk/commit/3f6f84461a74fb2d6d37b31e737711b5f83c2f66#diff-6c5e46029d14fa484c700918487121a72cd648b14dd43d728e1527df748d84e6R908 adds Win64 support. But the code in Win64 build ignores the offset parameter entirely. ```cpp #ifdef _WIN64 // Unused in this #if branch !!! LARGE_INTEGER filesize; filesize.QuadPart = 0;...

It would be nice to have one library with LINQ optimizations instead of two: https://github.com/reegeek/StructLinq

If filter could filter out processes with dlls or have negative search it would be awesome.

enhancement

Is there an option to parse a provided packet manually like DNS library can do ? ```cs var r = Response.FromArray(array); ``` https://github.com/kapetan/dns/blob/master/DNS/Protocol/Response.cs#L29

enhancement

There are few classes with the same name as .NET has: - CodeJam.HashCode - System.HashCode - CodeJam.Collections.CollectionExtensions - System.Collections.Generic.CollectionExtensions - CodeJam.Ranges.Range - System.Range

```cs string?[] a = { null, null }; var m = a.MinBy(x => x); // throws no InvalidOperationException collection has no elements. ``` This happens since the methods looks for...

Some docs point to outdated MSDN links. See https://github.com/EWSoftware/SHFB/issues/707