Installation
Install via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Essentials --version 1.1.68
or the NuGet Package Manager:
Install-Package Skybrud.Essentials -Version 1.1.68
Changelog
-
Marked misc classes as obsolete (see feda4ca)
The classes have had alternatives within the package for years, and should already have been marked as obsolete. The classes will be removed in v1.2 (or v2.0, if v1.2 becomes v2.0). -
Copied extension method classes in individual namespaces (see ea7d575)
Having the extension in the same namespace are more likely to cause conflicts (ambigious references) with other packages, so similar extension methods are now available in individual namespaces. The existing extension methods has been marked as obsolete. -
Added misc
IsMatchextension methods overloads for .NET'sRegexclass (see 320f179)
These extension adds similar functionality to the existingRegexUtils.IsMatchutility methods.