Michael Render

Results 34 issues of Michael Render

I like this library and would like to give back: This PR converts the Javadoc in the C# source code to C# XML comments. With these changes, each class's documentation...

I use `System.Text.Json` but a number of my dependencies use JSON.NET. Some of these dependencies serialize arbitrary objects, others take types like `Dictionary`. This makes deserializing with `STJ` more difficult,...

### Environment - Visual Studio version: 2022 Community, 17.9 Preview 5 - CodeMaid version: 12.0 - Code language: C# 12 ### Description ``` csharp /// /// Represents an HTML element....

With the announcement of the new [MSTest Runner](https://devblogs.microsoft.com/dotnet/introducing-ms-test-runner) As well as this enticing issue about NUnit support: https://github.com/microsoft/testfx/issues/2164 Is the NUnit team interested in pursuing support for this new runner?...

is:idea

## Read and complete the full issue template Do not randomly delete sections. They are here for a reason. **Do you want to request a *feature* or report a *bug*?**...

**Product and Version Used**: 4.10.0 **Steps to Reproduce**: ``` csharp internal sealed class C { private readonly string? x; // RCS0012 private readonly string? y; public C(string x, string y)...

Feature Request
Analyzer Options
Area-Analyzers

**Product and Version Used**: 4.10.0 **Steps to Reproduce**: ``` init roslynator_object_creation_type_style = implicit_when_type_is_obvious roslynator_array_creation_type_style = implicit_when_type_is_obvious ``` ```csharp List strings = [ "1", "2", "3" ]; // RCS1250 var x...

Minimal repro: ```csharp void M(int value) { Assert.That(value > 0); } void Is() { } ``` The fixer turns this into ```csharp void M(int value) { Assert.That(value, Is.GreaterThan(0)); } void...

### 🚀 Feature Request The ability to scroll within an element's scroll box. ### Example ``` csharp ILocator element = ...; element.Scroll(deltaX: 0, deltaY: 10); ``` ### Motivation There is...

### 🚀 Feature Request The ability to subscribe to arbitrary events, which would parallel the node.js implementation of `page.on`/`page.off`/`page.once` ### Example ```csharp private static async Task DragToTheRight(IPage page, ILocator element,...