Int32.TryParse() method.
If the operation is successful, true is returned, else the operation
returns a false.
int i = 0;
string str = "234abc";
bool b = Int32.TryParse(str, out i);
C# source code, articles and tutorials for C# and .NET developers, plus a You can post your code or articles..
Int32.TryParse() method.
If the operation is successful, true is returned, else the operation
returns a false.
int i = 0;
string str = "234abc";
bool b = Int32.TryParse(str, out i);
0 comments:
Post a Comment