Esempio n. 1
0
 internal void SetChannelObj(int lChannel, VB6File oFile)
 {
     if (this.m_Files == null)
     {
         this.m_Files = new ArrayList(256);
     }
     if (oFile == null)
     {
         ((VB6File)this.m_Files[lChannel])?.CloseFile();
         this.m_Files[lChannel] = (object)null;
     }
     else
     {
         object obj = (object)oFile;
         this.m_Files[lChannel] = obj;
     }
 }
 internal void SetChannelObj(int lChannel, VB6File oFile)
 {
     if (this.m_Files == null)
     {
         this.m_Files = new ArrayList(0x100);
     }
     if (oFile == null)
     {
         VB6File file = (VB6File)this.m_Files[lChannel];
         if (file != null)
         {
             file.CloseFile();
         }
         this.m_Files[lChannel] = null;
     }
     else
     {
         object obj2 = oFile;
         this.m_Files[lChannel] = obj2;
     }
 }
Esempio n. 3
0
 public GetHandler(VB6File oFile)
 {
     this.m_oFile = oFile;
 }