4

たとえば、2 つのアイテムがあります。Item1 は でstring、Item2 はintです。Item1 8文字とItem2 5桁(C#)の最大長を設定するにはどうすればよいですか?

4

1 に答える 1

0

これを行うには、StringLengthAttributeIntegerValidatorAttributeを使用するだけです。

class TestCase
{
  [StringLength(8, ErrorMessage = "The TestString value cannot exceed 8 characters.")]
  [Required(ErrorMessage="Value Required")]
  property string TestString;

  [IntegerValidator(MaxValue = 99999)]
  property int TestInt;
}
于 2013-03-04T13:10:40.777 に答える