Hi.. Does any one know how to convert a String to a int in C# :D .. Thanks in advance :yes:
Sudantha_s Member Feb 2, 2007 3,516 7 0 Assassin Brotherhood Jun 14, 2009 #1 Hi.. Does any one know how to convert a String to a int in C# .. Thanks in advance
S slmega Member Sep 12, 2008 175 5 0 New York, USA Jun 15, 2009 #2 Sudantha_s said: Hi.. Does any one know how to convert a String to a int in C# .. Thanks in advance Click to expand... int x = Int32.Parse(myString) or something like that. Or use Convert.ToInt32(myString)
Sudantha_s said: Hi.. Does any one know how to convert a String to a int in C# .. Thanks in advance Click to expand... int x = Int32.Parse(myString) or something like that. Or use Convert.ToInt32(myString)
Sudantha_s Member Feb 2, 2007 3,516 7 0 Assassin Brotherhood Jun 15, 2009 #3 slmega said: int x = Int32.Parse(myString) or something like that. Or use Convert.ToInt32(myString) Click to expand... thanks man..looks lyc its working
slmega said: int x = Int32.Parse(myString) or something like that. Or use Convert.ToInt32(myString) Click to expand... thanks man..looks lyc its working