예제 #1
0
파일: TLVHandler.cs 프로젝트: lijint/DHRQ
 public void AddTLVDef(TLVDef field)
 {
     if (mMap == null)
     {
         mMap = new TLVDefs();
     }
     mMap.AddField(field);
 }
예제 #2
0
파일: TLVHandler.cs 프로젝트: lijint/DHRQ
 public TLVHandler(string schemaFile)
     : this()
 {
     mMap = new TLVDefs(schemaFile);
 }