Skip to content

6.14.800

Latest
Compare
Choose a tag to compare
@cjvandyk cjvandyk released this 26 Apr 13:53
· 3 commits to main since this release
3895bf2

Extensions.dll contains extension methods that enhance existing C# classes thus making life easier for developers. ⭐ ⭐ ⭐ ⭐ ⭐

🥇 Extensions.dll now supports both .NET 8.0 and Graph 5+

Supports all these versions of .NET:

  • .NET versions 8.0, 7.0, 6.0.
  • .NET Framework versions 4.8, 4.7.2, 4.7.1, 4.7, 4.6.2.
  • .NET Standard versions 2.1 and 2.0.

Highlights are methods such as:

  • Use .Save() and .Load() for easy state saving of any object in C#.
  • Use .Retry() to easily handle 429 throttling errors in web calls.
  • Use System.Timer class to quickly add stopwatch timing functionality.
  • Use .IsPrime() to determine if a number is a prime number.
  • Use .GetNthPrime() and .GetNthPrimeAsync() to get the Nth prime number.
    Capable of calculating the first 10 mil primes in1 minute on an Intel Core i7 - 6700K CPU @ 4.00 GHz using 7 threads on 8 logical cores.
  • Use .ReplaceTokens() to replace multiple strings in string dictionary style.
  • Use .IsStrong() to validate strong passwords.
  • Use .ToTimeZone() to quickly convert any given time to any given time zone.
  • Use .Elevate() to restart current process in admin mode if it doesn't have admin rights.
  • Use .CompoundInterest() to calculate any given interest over any given perior at any given interval.

and many, many more.

Visitor Count