convert string to a number

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Hi,
How can I convert a string type to a number, f.example an Interger?

Thanks
Martin
 
Hi,

try :

int i = Convert.ToInt32(string);

Convert.ToInt32(string) will return the value thats in string as an integer.

hope this helps,

Stu
 
In addition to the other suggestions you can use the Parse method of many
value types to do this too.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top