2009-09-14 75 views
18

我正在使用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")] 

謝謝!

+0

有趣的問題,我很好奇,如果這樣的事情是可能的。 +1 – 2009-09-14 07:38:49

+0

也有興趣。 – 2010-03-04 00:01:56

+0

http://stackoverflow.com/questions/154109/custom-compiler-warnings – 2013-08-16 04:07:00

回答

7

您可以使用PostSharp來做到這一點。

我已經做過一次,並解釋如何做到這一點here

+0

非常感謝!我之前曾仔細看過帖子(針對另一個問題)並決定採取反對措施,但現在我認爲我會重新評估;) – 2009-09-15 01:11:27

+0

我剛剛發現了一個問題 - 看起來GetCustomAttributes()不再返回當它派生自PostSharp.Laos.OnMethodInvocationAspect而不是System.Attribute時的屬性 – 2009-09-15 02:56:14

+0

你的意思是它返回System.Attribute?你不能把它轉換成你自己的屬性嗎? (GetCustomAttributes總是返回一個System.Attribute AFAIK的數組,所以你總是必須施放我的想法? – 2009-09-15 06:57:45