コード例 #1
0
ファイル: Global.cs プロジェクト: ChrisJamesSadler/IL2CPU
 static public UInt32 FromHexWithLeadingZeroX(string aValue)
 {
     if (false == aValue.StartsWith("0x"))
     {
         throw new ArgumentException("aValue");
     }
     return(UInt32.Parse(aValue.Substring(2), NumberStyles.HexNumber));
 }