예제 #1
0
 public static bool HasTabName(this UITabSelector tabUi, string name)
 {
     if (name == null)
     {
         return(false);
     }
     return(tabUi.GetTabNames().Any((n) => n.Equals(name)));
 }