How to set an ints Hex Literal from a string, - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:56:33Zhttp://stackoverflow.com/feeds/question/848869http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/848869/how-to-set-an-ints-hex-literal-from-a-string2How to set an ints Hex Literal from a string,Fusspawn2009-05-11T16:18:56Z2009-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#8488885Answer by Daniel Brückner for How to set an ints Hex Literal from a string,Daniel Brückner2009-05-11T16:22:19Z2009-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>