快速提问...
如果我在界面中添加符号...
说[必填]
我可以在属性的 C# 类中省略该符号吗?
即我可以...
Interface IFoo
{
[Required]
string Bar {get; set;}
}
Class Foo : IFoo
{
string Bar {get; set;}
}
还是我不需要将符号放在界面中并执行此操作...
Interface IFoo
{
string Bar {get; set;}
}
Class Foo : IFoo
{
[Required]
string Bar {get; set;}
}