Marek Safar

Results 11 issues of Marek Safar

The compiler regex support is misbehaving in a multithreaded environment. This is very likely due to bugs we have in our SRE implementation. We need to investigate (e.g. write tests...

task

## Types in System.Core.dll to import - [ ] AesCng - [ ] AesCryptoServiceProvider - [ ] AesManaged - [ ] CngAlgorithm - [ ] CngAlgorithmGroup - [ ] CngExportPolicies...

task

It is useful for example for easier propagation of instructions into multiple method bodies.

Follow up on #67527 which was closed meantime

area-Meta

### Analyzer **Diagnostic ID**: IDE0060 ### Analyzer source **Version**: 7.0.0 ### Describe the bug IDE0060 message is issues for any partial method that uses nullable System.Diagnostics.CodeAnalysis attributes ### Steps To...

Area-Compilers
untriaged

### Analyzer **Diagnostic ID**: [IDE0060](https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/ide0060): `Remove unused parameter` ### Analyzer source **NuGet Package**: [Microsoft.CodeAnalysis.NetAnalyzers](https://www.nuget.org/packages/Microsoft.CodeAnalysis.NetAnalyzers) **Version**: ``` 3.3.4-beta1.22524.2 7.0.0-preview1.22524.2 ``` ### Describe the bug IDE0060 warning is reported incorrectly ### Steps...

Area-IDE
Feature - IDE0060

gRPC extensively uses HTTP/2 which is supported on [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/whats-new/dotnet-core-3-0#http2-support) since 3.0. We are lacking that due to dependency on earlier versions of .NET Core but that might not be...

task

Double values should be parsed using `double.Parse(value, CultureInfo.InvariantCulture)` instead. Otherwise it can fail on cultures with different decimal separator. It should speed up the code a bit as well.

_From @jeffechua on July 13, 2018 15:35_ ## Steps to Reproduce 1. Compile either of the following test cases: ``` using System; using Gtk; namespace TransparencyTest { class MainClass {...