M Martin Jul 4, 2005 #1 Hi, How can I convert a string type to a number, f.example an Interger? Thanks Martin
J John Timney \(ASP.NET MVP\) Jul 4, 2005 #2 use the overloaded convert.toint32() http://msdn.microsoft.com/library/d.../html/frlrfSystemConvertClassToInt32Topic.asp -- Regards John Timney ASP.NET MVP Microsoft Regional Director
use the overloaded convert.toint32() http://msdn.microsoft.com/library/d.../html/frlrfSystemConvertClassToInt32Topic.asp -- Regards John Timney ASP.NET MVP Microsoft Regional Director
S Stu Jul 4, 2005 #3 Hi, try : int i = Convert.ToInt32(string); Convert.ToInt32(string) will return the value thats in string as an integer. hope this helps, Stu
Hi, try : int i = Convert.ToInt32(string); Convert.ToInt32(string) will return the value thats in string as an integer. hope this helps, Stu
B Bob Powell [MVP] Jul 4, 2005 #4 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.
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.