Example #1
0
 public DebugApiXml(ModuleInfo[] moduleInfos)
 {
     this.m_debugApiList         = new DebugApiList();
     this.m_debugApiList.Entries = new List <DebugApiModel>();
     foreach (ModuleInfo moduleInfo in moduleInfos)
     {
         this.m_model            = new DebugApiModel();
         this.m_model.ApiName    = moduleInfo.moduleName;
         this.m_model.VenderName = moduleInfo.VenderName;
         this.m_model.NsoName    = moduleInfo.fileName;
         this.m_debugApiList.Entries.Add(this.m_model);
     }
 }
Example #2
0
 public DebugApiXml()
 {
     this.m_debugApiList         = new DebugApiList();
     this.m_debugApiList.Entries = new List <DebugApiModel>();
 }