nalka0
nalka0
## Describe the bug When the taskbar is set to hide automatically, it doesn't show up over a maximized MetroWindow. Also, still when it's maximized , there's a little gap...
The link to doc_fr mentionned in the [wiki](https://github.com/HandyOrg/HandyControl/wiki) is broken. From what I could figure out : - BadNiiw is now @toonaii (based on discussion in #2) - No repository...
This PR contains all the changes I made to make unity spy work on a game using Unity 2022.3.10. I'm unsure how to create a complete new offset object and...
### Is your feature request related to a problem? DateOnly properties are treated as any other complex type and its properties are serialised individually. It prevents using features like date...
### Is your feature request related to a problem? For example if I want my properties with type `string` to be mapped as `keyword`, I need to manually apply the...
S6602 tells you to replace calls to `Enumerable.FirstOrDefault` with calls to a "Find" method but its benchmark only includes `FirstOrDefault` and `List.Find` despite the rule also applying to `Array` and...
### Description S1450 is raised on the following snippet despite `foundMultiple` being used on both methods ### Repro steps ```cs private class LookForSinglePropertyAccessExpressionVisitor : ExpressionVisitor { private PropertyInfo foundProperty; private...
### Description There's a false positive for S2583 with the below snippet ### Repro steps ```cs public static void S2583() { List list = new(); foreach (var item in Enumerable.Range(0,...
**Version Used**: Visual Studio Community 2022 version 17.11.4 **Steps to Reproduce**: ```cs var x = ((byte)3).GetType(); ``` In the above snippet `x` represents `typeof(byte)` with the cast and would represent...