예제 #1
0
 public MappingEmit(Type klasssrc, Type klassdst)
 {
     this.srcType = klasssrc;
     this.dstType = klassdst;
     emit         = new MapEmitInfo(klasssrc, klassdst);
     emit.correspondentIndex();
 }
예제 #2
0
 public override void actualizeInfo()
 {
     if (emit == null)
     {
         emit = new MapEmitInfo(srcType, dstType);
     }
     emit.correspondentIndex();
 }