コード例 #1
0
ファイル: ActionMenu.cs プロジェクト: NortonBen/QLBH_TEST
 public static bool Show(string[] strs)
 {
     foreach (string str in strs)
     {
         string output = ActionMenu.Action(str);
         if (output != null)
         {
             return(true);
         }
     }
     return(false);
 }
コード例 #2
0
ファイル: ActionMenu.cs プロジェクト: NortonBen/QLBH_TEST
 public static string Action(String[] strs)
 {
     foreach (string str in strs)
     {
         string output = ActionMenu.Action(str);
         if (output != null)
         {
             return(output);
         }
     }
     return("");
 }