我想在我的代码中检查一些条件,如果条件不满意,我希望在显示VS(C#)错误时在Debug上显示错误,
我尝试用Debug.Assert()
做到这一点,但它并没有像我期望的那样工作。
这是我的代码:
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;
}
}
当我使用此属性而没有任何参数时,我的项目成功构建
// ...
[Inflicted]
public string Title
{
get { return _Title; }
set { _Title = value;}
}
// ...
但我希望此属性的用户不能仅使用我的属性和参数。
看起来像是:[Inflicted("param1", "param2")]
答案 0 :(得分:2)
如果您想要编译错误,Debug.Assert
不适合您:在调试中运行应用程序时会产生错误。
要在编译时创建错误,您应该更改构造函数:
public Inflicted (string param1, params string[] otherParams) {
}
由于params
参数可以为空,这将强制调用构造函数至少有一个参数。