コード例 #1
0
ファイル: AssemblyData.cs プロジェクト: ysc0423/CommonCore
 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;
     }
 }
コード例 #2
0
 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;
     }
 }
コード例 #3
0
ファイル: GetHandler.cs プロジェクト: ysc0423/CommonCore
 public GetHandler(VB6File oFile)
 {
     this.m_oFile = oFile;
 }