Cosmos/source2/Debug/Cosmos.Debug.GDB/Global.cs
kudzu_cp 7951702138
2010-07-12 15:02:13 +00:00

13 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
namespace Cosmos.Debug.GDB {
public class Global {
static public UInt32 FromHex(string aValue) {
return UInt32.Parse(aValue.Substring(2), NumberStyles.HexNumber);
}
}
}