C#


ROSLYN.DESIGN.CA1012 : Abstract types should not have public constructors (C#)

See Roslyn-Detected C# Warning Classes for more information.

要旨

Constructors on abstract types can be called only by derived types. Because public constructors create instances of a type, and you cannot create instances of an abstract type, an abstract type that has a public constructor is incorrectly designed.

この指摘はRoslynのCA1012に該当します。ルール詳細につい ては、下記リンクを参照してください。 CA1012

プロパティ

クラス名 Abstract types should not have public constructors (C#)
日本語クラス名 Abstract types should not have public constructors (C#)
クラス分類 信頼性 (reliability)
ニーモニック ROSLYN.DESIGN.CA1012
カテゴリー なし
対応言語 C# で利用可能です。
有効/無効設定 このワーニングクラスのチェックはデフォルトで無効になっています。チェックを有効にするにはプロジェクト設定ファイル (configuration file)に以下の WARNING_FILTER ルールを追加してください。
WARNING_FILTER += allow class="Abstract types should not have public constructors (C#)"

関連のある設定ファイルパラメータ

設定ファイルの以下のパラメータがこのワーニングクラスのチェックに影響します。