Check out example codes for "isprime c#". It will help you in understanding the concepts better.
Code Example 1
public static bool IsPrime(int number)
{
if (number <= 1) return false;
if (number == 2) return true;
if (number % 2 == 0) return false;
var boundary = (int)Math.Floor(Math.Sqrt(number));
for (int i = 3; i <= boundary; i+=2)
if (number % i == 0)
return false;
return true;
}
Learn ReactJs, React Native from akashmittal.com