Jan
Jan
Version: 0.13.1 When a parameterised input value has trailing newline characters, they are rendered in the summary table on the console, breaking the table. ```c# public class Repro { [ParamsSource(nameof(Data))]...
**Version Used**: VS 17.3 (Roslyn 4.3.0.3-22401.3) **Steps to Reproduce**: 1. Open the "C# Interactive" window in VS. 2. Submit any statement that results in error diagnostics. **Expected Behavior**: All error...
**Version Used**: VS 17.3 (Roslyn 4.3.0-3.22401.3) **Steps to Reproduce**: Place the editor caret before the `void` or the `int`. ```csharp namespace N; void M() { } int P { get;...
Exception in `CSharpAddParameterCheckCodeRefactoringProvider` when changing type of indexer argument
**Version Used**: VS 17.3, Roslyn 4.3.0-3.22401.3 **Steps to Reproduce**: 1. Take the code below. 2. Select the type of the indexer argument and type any type name (valid or invalid)....
**Product and Version Used**: Roslynator 4.1.1 in VS 17.3.5 **Steps to Reproduce**: Apply the codefix for RCS1244 on the `default()` expression. ```csharp var x = () => { return default(object);...
* Allow overriding `Dispose(bool)` as per the documentation on `Dispose()` (fixes #91) * Perform the deregistration of the `Application.Exit` event on the application instance's dispatcher to avoid threading/ownership exceptions (fixes...
The `Dispose` method of `TaskbarIcon` is not thread-safe, it can only be called from the WPF application's main thread. This should either be documented, or the implementation should be made...
The [documentation of `TaskbarIcon.Dispose()`](https://github.com/hardcodet/wpf-notifyicon/blob/b3d484a/src/NotifyIconWpf/TaskbarIcon.cs#L1061-L1065) says this: > This method is not virtual by design. Derived classes should override ``. However it is impossible to actually override [`Dispose(bool)`](https://github.com/hardcodet/wpf-notifyicon/blob/b3d484a/src/NotifyIconWpf/TaskbarIcon.cs#L1095) because it is...
The context menu does not react to toggling of the High Contrast mode in Windows. It will either keep the style at the time of icon creation, or it'll have...
**Version Used**: VS 17.9.6 **Steps to Reproduce**: Place the caret on the `TIn` symbol and press F1. ```csharp class C; ``` **Expected Behavior**: The help page for generic types (https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/types/generics)...