public string Get(int position)
        {
            this.healthCheckCounter.Next();
            var value = primeSearcher.Find(position);

            return("Done! The " + position + "nth prime number is " + value);
        }
Пример #2
0
        public string Get(int position)
        {
            var value = primeSearcher.Find(position);

            return("Done! The " + position + "nth prime number is " + value);
        }