Код: Выделить всё
protected override ValidationResult IsValid(
Object value,
ValidationContext validationContext
)
{
//Here is where I wanna test whether the following conversion is applicable
var x = Convert.ToInt64(value);
}
Код: Выделить всё
var convertible = value as IConvertible;
if (convertible != null)
var x = convertible.ToInt64(null);
Подробнее здесь: https://stackoverflow.com/questions/934 ... rt-toint64
Мобильная версия