次のようなクラスがあります。
Public Class Utilities
Public Shared Function blah(userCode As String) As String
'doing some stuff
End Function
End Class
その上でFxCop10を実行していますが、次のように表示されます。
"Because type 'Utilities' contains only 'static' (
'Shared' in Visual Basic) members, add a default private
constructor to prevent the compiler from adding a default
public constructor."
はい、FxCopさんです。プライベートコンストラクターを追加します。
Private Utilities()
今私は持っています:
"It appears that field 'Utilities.Utilities' is
never used or is only ever assigned to. Use this field
or remove it."
両方の警告を取り除くために私が何をすべきかについてのアイデアはありますか?