Property | Value |
---|---|
Id | RCS1244 |
Category | Simplification |
Severity | Hidden |
Minimal Language Version | 7.1 |
This analyzer is similar to IDE0034 but there are some differences. For example this analyzer does not simplify 'default' expression passed as an argument expression.
Foo M(Foo foo = default(Foo)) // RCS1244
{
return default(Foo); // RCS1244
}
Foo M(Foo foo = default)
{
return default;
}
(Generated with DotMarkdown)