コード例 #1
0
ファイル: SmarkDataSection.cs プロジェクト: zmm623/IKendeLib
 public void Remove(AssemblyElement url)
 {
     if (BaseIndexOf(url) >= 0)
     {
         BaseRemove(url.Type);
     }
 }
コード例 #2
0
ファイル: SmarkDataSection.cs プロジェクト: zmm623/IKendeLib
 public void Add(AssemblyElement url)
 {
     BaseAdd(url);
 }
コード例 #3
0
ファイル: SmarkDataSection.cs プロジェクト: zmm623/IKendeLib
 public int IndexOf(AssemblyElement url)
 {
     return(BaseIndexOf(url));
 }