Heku
Heku
### Environment - Visual Studio version: VS 2019 and VS 2022 - CodeMaid version: 12.0 - Code language: C# ### Description Code cleanup change [`private protected`](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/private-protected) to `protected` ### Steps...
Hi, In a show, there are many videos, it would be great if the next video in the series could auto play, at present, people have to click next video...
I noted the PDF file exported via playwright is much larger than expected, I think it's because the playwright by default export the **tagged** PDF, which seems introduced since [chrome...
### Source/destination types ```csharp public class TestCalss { public NonNullType Value { get; set; } } public struct NonNullType { } ``` ### Source/destination JSON ```javascript {"Value":null} ``` ### Expected...
I'm going to pull a request to remove all unnecessary `async` and `await` code, i.e. update code as below ```cs async Task Foo() { await Bar(); } // to Task...
The doc https://learn.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.structlayoutattribute.pack?view=net-8.0#code-try-6 says: > To take another example, consider the following structure, which consists of two byte fields, one 32-bit signed integer field, one single-element byte array, and a...
If developers changed the nuget global packages folder by set NUGET_PACKAGES environment variable to a path without trailing slash, they may have a build error like this, refer to https://github.com/PrismLibrary/Prism/issues/2369...
Please refer to https://github.com/JamesNK/Newtonsoft.Json/issues/3047
I have a very common use case that deserialize a JSON array to a base class array, for example. ```cs public abstract class A { } public class B :...