You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
S3963 is fired when static field initialization is present in static constructor that contains also other code warranting its existence.
Inline initialization of those fields doesn't change anything regarding static constructor presence, thus making the change pointless in such case.
Repro steps
internal static class S3963Test
{
private static readonly string Foo;
private static readonly string Bar;
private static readonly string Baz;
static S3963Test()
{
(Foo, Bar) = GetFooBar();
Baz = GetBaz(); // triggers S3963 despite static ctor being necessary anyways due to line above (which by itself doesn't trigger the rule)
}
private static (string, string) GetFooBar()
{
return ("Foo", "Bar");
}
private static string GetBaz()
{
return "Baz";
}
}
Expected behavior
Do not fire S3963 when static field initialization is not the only thing warranting existence of static ctor.
Description
S3963 is fired when static field initialization is present in static constructor that contains also other code warranting its existence.
Inline initialization of those fields doesn't change anything regarding static constructor presence, thus making the change pointless in such case.
Repro steps
Expected behavior
Do not fire S3963 when static field initialization is not the only thing warranting existence of static ctor.
Actual behavior
S3963 is fired
Known workarounds
Suppress S3963.
Related information
SonarAnalyzer.CSharp 9.32.0.97167
The text was updated successfully, but these errors were encountered: