示例#1
0
文件: Block32.cs 项目: 7shi/LLPML
 public void AddInt2(Int v)
 {
     data.Add(v); length += sizeof(int);
 }
示例#2
0
文件: Block32.cs 项目: 7shi/LLPML
 public static Int New(int v)
 {
     var ret = new Int(); ret.Value = v; return ret;
 }