public string Get(int position) { this.healthCheckCounter.Next(); var value = primeSearcher.Find(position); return("Done! The " + position + "nth prime number is " + value); }
public string Get(int position) { var value = primeSearcher.Find(position); return("Done! The " + position + "nth prime number is " + value); }