5 references to ToUInt16
System (1)
compmod\system\componentmodel\UInt16Converter.cs (1)
39return Convert.ToUInt16(value, radix);
System.Activities (2)
System\Activities\Debugger\DebugInfo.cs (2)
361location.Value = Convert.ToUInt16(RemoveHexadecimalPrefix(value), Convert.ToInt32(stringRadix, CultureInfo.InvariantCulture)); 520ch = (char)Convert.ToUInt16(RemoveHexadecimalPrefix(stringValue), radix);
System.Net (2)
net\PeerToPeer\Collaboration\CollaborationHelperFunctions.cs (2)
71newGuid.data2 = (ushort)(Convert.ToUInt16(guidString.Substring(startVal, endVal - startVal), 16)); 74newGuid.data3 = (ushort)(Convert.ToUInt16(guidString.Substring(startVal, endVal - startVal), 16));