アットウィキロゴ
public interface ISampleInterface
{
}

コーディング標準
  • インターフェイスはIXxxYxxと、頭文字にIを記述する

プロパティ

インターフェイスに対し、プロパティを宣言する
public interface ISampleInterface
{
  // Property declaration:
   string Name
   {
       get;
       set;
   }
}
最終更新:2007年01月18日 13:01