我正在使用VS2008並希望根據屬性上的自定義屬性(如果可能的話)創建編譯時警告/錯誤。生成自定義編譯時間警告C#
有兩種情況,其利息我目前:
[MyAttribute (typeof(MyClass)]
凡MyClass的必須實現的接口。目前,我在屬性的構造函數斷言這一點,但是這並不能很容易地追查,由於堆棧跟蹤的性質:
public MyAttribute (Type MyClassType)
{
System.Diagnostics.Debug.Assert(typeof(MyInterface).IsAssignableFrom(MyClassType),
"Editor must implement interface: " + typeof(MyInterface).Name);
}
這讓我感興趣的第二種情況是,我有一個類型定義在一個屬性中,如果該類型實現了一個接口,那麼如果另一個屬性不存在,應該顯示一個警告。
I.E.如果(MyClass.Implements(SomeInterface)& &!是否存在(SomeAttibute)){生成警告}
[MyAttribute(typeof(MyClass)]
// Comment next line to generate warning
[Foo ("Bar")]
謝謝!
有趣的問題,我很好奇,如果這樣的事情是可能的。 +1 – 2009-09-14 07:38:49
也有興趣。 – 2010-03-04 00:01:56
http://stackoverflow.com/questions/154109/custom-compiler-warnings – 2013-08-16 04:07:00