✅ Project status: active.
FC.Extension is a library which adds reduces the coding effort for the development team. I have tried to add most the methods which I used in my project and felt that it will be add values to most of the developer community.
- NuGet: Install-Package FC.Core.Extension
- Ready to use in the project as an extension
- File Extension support
- String Extension
- Numeric Extension
- Targets .NET Core 3.1+
- No external dependencies
Install-Package FC.Core.Extensionusing FC.Core.Extension.StringHandlers;
..
string planText = "FC Core Extension. String encrypt";
string encryptedValue = planText.Encrypt("123457855");
Console.WriteLine($"Plan Text : {Value} Encrypted Value : {encryptedValue} Key : {Key}");
⚠️ All Set. Use the same method for other extension methods. The full featured document available in the Gitbook,
Complete