17 references to ToInt32
mscorlib (1)
system\guid.cs (1)
570uint number = (uint)Convert.ToInt32(guidString.Substring(numStart, numLen),16);
System (1)
compmod\system\componentmodel\Int32Converter.cs (1)
38return Convert.ToInt32(value, radix);
System.Activities (1)
System\Activities\Debugger\DebugInfo.cs (1)
349location.Value = Convert.ToInt32(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture));
System.Configuration (1)
System\Configuration\InfiniteIntConverter.cs (1)
41return Convert.ToInt32((string)data, 10);
System.Drawing (6)
commonui\System\Drawing\Advanced\ColorTranslator.cs (6)
240c = Color.FromArgb(Convert.ToInt32(htmlColor.Substring(1, 2), 16), 241Convert.ToInt32(htmlColor.Substring(3, 2), 16), 242Convert.ToInt32(htmlColor.Substring(5, 2), 16)); 249c = Color.FromArgb(Convert.ToInt32(r + r, 16), 250Convert.ToInt32(g + g, 16), 251Convert.ToInt32(b + b, 16));
System.Web (1)
Configuration\ProcessModelSection.cs (1)
368return (int)Convert.ToInt32((string)base[_propCpuMask], 16);
System.Windows.Forms (6)
winforms\Managed\System\WinForms\InputLanguage.cs (5)
217int encodingValue = Convert.ToInt32(encoding, 16); 222currentHandle = (IntPtr)Convert.ToInt32((string)substitutions.GetValue(encoding), 16); 240if (currentHandle == (IntPtr)Convert.ToInt32(encoding, 16)) { 265if (language == (0xffff & Convert.ToInt32(encoding.Substring(4,4), 16))) { 269int value = Convert.ToInt32(codeValue, 16);
winforms\Managed\System\WinForms\NumericUpDown.cs (1)
608Value = Constrain(Convert.ToDecimal(Convert.ToInt32(Text, 16)));