示例#1
0
        public static void Main()
        {
            // InnerMessage.proto生成cs代码
            InnerProto2CS.Proto2CS();

            Console.WriteLine("proto2cs succeed!");
        }
示例#2
0
        public static void Main(string[] args)
        {
            // InnerMessage.proto生成cs代码
            InnerProto2CS.Proto2CS();

            Console.WriteLine("proto2cs succeed!");
            if (args.Length > 0 && args[0] == "cmdline")
            {
                return;
            }
            Console.ReadKey();
        }
示例#3
0
文件: Proto2CS.cs 项目: dajiadousr/ET
 public static void Export()
 {
     // InnerMessage.proto生成cs代码
     InnerProto2CS.Proto2CS();
     Log.Console("proto2cs succeed!");
 }