Hi Guys
NP61 Any advantage
int volInt = Int32.Parse(volString);
int volInt = Convert.ToInt32(volString);
In a program these two codes are producing similar output. I wish to know whether
these codes are same or is there any advantage one over other when using it. Anyone knows please explain.
Thank you