antiblock
diamwall
  • Chatbox

    Did you check out our Discord? https://discord.gg/FFdvMjk9xA
    You don't have permission to chat.
    Load More
Sign in to follow this  
V¡®u§

Converter De String Para Float Em C#

1 post in this topic

Para converter de String para Float, passando um valor default

public static float StrToFloatDef(string pStrValor, float pFltValorDefault)

{

pStrValor = pStrValor.Trim();

if (pStrValor != "")

{

try

{

return float.Parse(pStrValor);

}

catch { }

}

return pFltValorDefault;

}

Via CursoC#

Share this post


Link to post
Share on other sites
antiblock
Cyphriun

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this