コード例 #1
0
ファイル: ProductIndex.cs プロジェクト: MegaGame/Productindex
 public void MakepTypeList()
 {
     ProducttIndexAccess p = new ProducttIndexAccess();
     String[] a = p.GetIndex(p.GetProductTypes).Split(';');
     foreach (var item in a)
     {
         pTypeList.Add(item);
     }
 }
コード例 #2
0
ファイル: ProductIndex.cs プロジェクト: MegaGame/Productindex
 public void MakepDocumationList()
 {
     pDocumationList.Add("Opskirft");
     pDocumationList.Add("Produkt infomation");
     ProducttIndexAccess p = new ProducttIndexAccess();
     String[] a = p.GetIndex(p.GetpDocumationTypes).Split(';');
     foreach (var item in a)
     {
         pDocumationList.Add(item);
     }
 }