Muhammad Rehan Saeed

Results 855 comments of Muhammad Rehan Saeed

- `csharp_style_prefer_top_level_statements` https://github.com/dotnet/roslyn/pull/60383 - `csharp_style_prefer_tuple_swap` - `csharp_style_prefer_extended_property_pattern` - `csharp_style_prefer_local_over_anonymous_function` - This rule was renamed from csharp_style_pattern_local_over_anonymous_function https://github.com/dotnet/docs/issues/28285. - `csharp_style_prefer_method_group_conversion` https://github.com/dotnet/roslyn/pull/58875. - `csharp_style_prefer_utf8_string_literals` - `dotnet_style_prefer_foreach_explicit_cast_in_source` https://github.com/dotnet/roslyn/pull/60120.

Yes that's correct. We should probably add a comment to that effect. I was hoping that we could transition to the new syntax by now so we wouldn't need to...

We default to warning in all cases except very few where making it a hard requirement may make the code worse. We should probably review them. Using warnings has the...

Tested migrating from `[rule] = [value]:[severity]` syntax to `[rule].[RuleId].[severity]` in VS 16.10 and it still doesn't seem to work completely. At some point the old syntax will be deprecated (See...

Raised https://github.com/dotnet/roslyn/issues/55542

There seem to be issues with `dotnet_analyzer_diagnostic.severity = warning` as describec in https://github.com/RehanSaeed/EditorConfig/issues/56 which are related, so pausing this PR.

Thank you for your kind words. # Double Circuit Breaker This is a pretty advanced pattern that would probably only be useful for large applications under a lot of load....

**Chad Boettcher** commented on **2017-09-01 19:02:41** I'm having a problem initializing `Values` objects. For example, if I'm creating an `Organization` object, how to I initialize an `Awards` object with 2...

**Chad Boettcher** commented on **2017-09-06 22:39:55** ```cs Award = new List() { "Award 1", "Award 2" }, ``` By the way, you sir, are a genius. This package saved me...

**[Muhammad Rehan Saeed](https://rehansaeed.com)** commented on **2017-09-12 15:20:22** > I'm having a problem initializing `Values` objects. For example, if I'm creating an `Organization` object, how to I initialize an `Awards` object...