简体   繁体   中英

How to send an error message to the Debugger and stopping the debug?

I want to check some conditions in my code and if the condition not satisfied I want show an error on the Debug when the VS(C#) errors shown,
I tried to do that with Debug.Assert() but it didn't work like what I expected. this is my code:

  public class Inflicted : Attribute
    {
        public string[] Names{ get; set; }
        public Inflicted (params string[] Names) {

            // check if the params empty;
            // so show the error in debuger.
            Debug.Assert(Names.Length == 0, "The Inflicted cant be with zero argument");

            this.Names= Names;
        }
} 

when I use this attribute without any arguments my project build successfully

// ...
[Inflicted]
public string Title
{
    get { return _Title; }
    set { _Title = value;}
}
// ...

but I want the user of this attribute can't use my attribute only with arguments. looks like: [Inflicted("param1", "param2")]

If you want a compile error, Debug.Assert is not for you: it creates errors when running the application in debug.

To create an error on compilation, you should change your constructor:

public Inflicted (string param1, params string[] otherParams) {

}

Since the params argument can be empty, this will force calls to the constructor to have at least 1 argument.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM