funcion isNumeric() en c# para .net

/// <summary>

/// metodo que retorna true o false si un valor de tipo string es un número en c#

/// </summary>

/// <param name="val">Número a verficar</param>

/// <param name="NumberStyle">Stilo</param>

/// <returns>true si es un número</returns>

public bool isNumeric(string val, System.Globalization.NumberStyles NumberStyle)

{

Double result;

try

{

return Double.TryParse(val, NumberStyle, System.Globalization.CultureInfo.CurrentCulture, out result);

}

catch (Exception ex)

{

throw new Exception(ex.Message,ex);

}

}

About omaracostacasas

ING SOFTWARE
This entry was posted in Microsoft .NET. Bookmark the permalink.

Leave a comment