Example #1
0
        public static string GetExportNativeType(string typeName)
        {
            typeName = DataCsExporter.GetExportNativeType(typeName);

            typeName = typeName.Replace("byte", "ubyte");

            return(typeName);
        }
Example #2
0
        public static string GetExportNativeType(string typeName)
        {
            typeName = DataCsExporter.GetExportNativeType(typeName);

            if (!typeName.Contains("sbyte"))
            {
                typeName = typeName.Replace("byte", "ubyte");
            }

            return(typeName);
        }