예제 #1
0
파일: Block32.cs 프로젝트: 7shi/LLPML
 public static UInt New(uint v)
 {
     var ret = new UInt(); ret.Value = v; return ret;
 }
예제 #2
0
파일: Block32.cs 프로젝트: 7shi/LLPML
 public void AddUInt2(UInt v)
 {
     data.Add(v); length += sizeof(uint);
 }