How to throw a compiler error if more than one member has the same Attribute

前端 未结 4 1266
南笙
南笙 2020-12-06 05:44

Simple question, how do you force the C# compiler to throw a compilation error.


Update: Perhaps it\'s better to use an Assert.Fail() instead?

4条回答
  •  一整个雨季
    2020-12-06 06:15

    You can use a diagnostic directive:

    #error Oops. This is an error.
    

    or for just a warning:

    #warning This is just a warning.
    

    You'd normally want to put these in conditional blocks, I'd expect...

    EDIT: Okay, now you've updated your question, you simply can't do this at compile-time. Your suggestion of using Assert.Fail punts the problem to execution time.

    I would suggest you write unit tests to detect this (iterate over all the types in the assembly, and check that the attribute has only been applied at most once per type).

    EDIT: In 2016... while Code Analysis as suggested by the OP isn't actually a compiler error, now that Visual Studio uses Roslyn, it's feasible to hook into the compiler and genuinely get an error from the compiler, using a Roslyn code analyzer. However, I would still personally prefer unit tests for this, as then the code could be built and tested by anyone, regardless of whether they had the Roslyn analyzer installed. There's still no way of validating this with a "purely vanilla" C# compiler.

提交回复
热议问题