using System; using System.Collections.Generic; namespace ProtoCSStruct { public static class Define { //字符串最大大小,太大的自己想办法处理 public const int MaxStringLength = 32768; public const string FileHeader = "// Generated by the protocsstruct compiler. DO NOT EDIT!\n"; } }