Is there a publically available table of prime numbers in .NET

Viewed 411

I know there is one which is used in all kind of .NET dictionaries and hashtables in:

internal static class HashHelpers

  • Is there a public one somwhere else as well?
  • If no, why is it kept internal isn't it something very commonly used?
  • Is the copy & paste the way to go if I need prime numbers in my code?
2 Answers
Related