Printable View
Hi, How can I convert a string type, for exampl1243124, into an integer in C#? Thanks James
Convert.ToInt64(string)
OR int.Parse(string);