P
psycho
what is the difference between the two forms of converting to integer
from string
string strVal = "10";
Convert.ToInt32(strVal);
Int32.Parse(strVal);
which method is more efficient in terms of performance?
from string
string strVal = "10";
Convert.ToInt32(strVal);
Int32.Parse(strVal);
which method is more efficient in terms of performance?