static public uint GetUInt32(string str) { try { str = Util.Remove_Dec(str); if (str.Length == 0) { return(0); } //return System.Convert.ToUInt32(str); return(uint.Parse(str, System.Globalization.CultureInfo.InvariantCulture.NumberFormat)); } catch { return(0); } }