クラスやメソッドに対して付加情報を付け加える方法
角括弧で囲んだ属性名を適用先のエンティティの宣言の前に配置する。
例
1 2 3 4 5 |
[Serializable] public class SampleClass { // Objects of this type can be serialized. } |
1 2 |
[System.Runtime.InteropServices.DllImport("user32.dll")] extern static void SampleMethod(); |