geturi() публичный статический Метод

gets the top n uris that best matches the given keyword ,you can specify MaxURis with 1 to get the best matching one ///
public static geturi ( string keyword, int MaxUris = 1 ) : List
keyword string keyword to get uri for
MaxUris int the number of top rated uris to get
Результат List
 public List <string> geturi(string keyword, int MaxUris = 1)
 {
     return(KwSearch.geturi(keyword, MaxUris));
 }
 public string geturi_bestMatch(string keyword)
 {
     return(KwSearch.geturi(keyword));
 }