How to set an ints Hex Literal from a string, - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:56:33Z http://stackoverflow.com/feeds/question/848869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/848869/how-to-set-an-ints-hex-literal-from-a-string 2 How to set an ints Hex Literal from a string, Fusspawn 2009-05-11T16:18:56Z 2009-05-11T16:22:19Z <p>Im attempting to load a hex literal from an xml settings file, I can parse the xml just fine and get the required string from the file, </p> <p>but i cant seem to get it to set an int variables value :/</p> <p>Code:</p> <pre><code> int PlayerBaseAddress = System.Convert.ToInt32(ConfigLoader.GetSetting("PlayerBaseAddress")); // Input string was not in a correct format. public static string GetSetting(string Val) { // This loads from the xml file, Pretend its hardcoded to return a string of 0x17EAAF00 } int PlayerBaseAddress = 0x17EAAF00; // This works. </code></pre> http://stackoverflow.com/questions/848869/how-to-set-an-ints-hex-literal-from-a-string/848888#848888 5 Answer by Daniel Brückner for How to set an ints Hex Literal from a string, Daniel Brückner 2009-05-11T16:22:19Z 2009-05-11T16:22:19Z <p>You have to supply the base of the string to the overloaded method <a href="http://msdn.microsoft.com/en-us/library/1k20k614.aspx" rel="nofollow"><code>Convert.ToInt32(String value, Int32 fromBase)</code></a>.</p> <pre><code>Int32 value = Convert.ToInt32(hexString, 16); </code></pre>