示例#1
0
        GenericArg ReadGenericArg(byte[] data, int pos, out int start)
        {
            start = pos;
            CustomMod [] mods = ReadCustomMods(data, start, out start);
            GenericArg   arg  = new GenericArg(ReadType(data, start, out start));

            arg.CustomMods = mods;
            return(arg);
        }
示例#2
0
 void Write(GenericArg arg)
 {
     Write(arg.CustomMods);
     Write(arg.Type);
 }