public static bool ULong(ref string _line)
        {
            if (ObjectIdentify.IsULong(_line))
            {
                _line = _line.Replace("unsigned __int64", "\tulong");
                return(true);
            }

            return(false);
        }
        public static bool String(ref string _line)
        {
            if (ObjectIdentify.IsULong(_line))
            {
                _line = _line.Replace("std::string", "string");
                _line = _line.Replace("STRING", "string");
                return(true);
            }

            return(false);
        }