最佳答案
我试图在我的 WPF 项目中使用 DataAnnotions 来指定字符串的最大长度,具体如下:
using System.ComponentModel.DataAnnotations;
然而,我得到了错误
The type or namespace name 'DataAnnotations' does not exist in the 命名空间‘ System.Component 模型’(是否缺少程序集 参考?)
我已经看到了 DataAnnotations
是的存在于这个名称空间中的其他示例。我用的是 C # 4。我为什么不能用这个?我该怎么做才能弥补?