[Serializable]
public class Foo
{
[DisplayName("??")]
[Required]
public string Name { get; set; }
}
将此属性本地化的最佳解决方案是什么?
[Serializable]
public class Foo
{
[DisplayName("??")]
[Required]
public string Name { get; set; }
}
将此属性本地化的最佳解决方案是什么?