Ivan Serdiuk

Results 7 issues of Ivan Serdiuk

Collection was modified; enumeration operation may not execute. --- EXCEPTION #1/2 [InvalidOperationException] Message = “Collection was modified; enumeration operation may not execute.” ExceptionPath = Root.InnerException ClassName = System.InvalidOperationException HResult =...

Add MeansImplicitUseAttribute to MigrationAttribute to tell ReSharper/Rider that types marked by "Migration" are used implicitly and usage warning should not be shown

``` using System.Net.Http; using System.Net.Http.Json; using System.Threading.Tasks; public class C { private readonly HttpClient _httpClient = new(); public async Task GetResult() { var response = await _httpClient.GetFromJsonAsync(new Uri("")); } private...

https://www.nuget.org/packages/System.Interactive/

`var array = ImmutableArray.Create(75);` `array.Add(1); // should warn here that return value of pure method is not used` https://youtrack.jetbrains.com/issue/RSRP-466425