Is Numeric metodunu şu şekildede yazabiliriz. Burada string değeri integer’a convert ederek oluşan Exception durumuna göre true ya da false döndürüyoruz.
public bool IsNumeric(string value)
{
try
{
Convert.ToInt32(value);
return true;
}
catch (Exception)
{
return f...
1 ay önce