A wide-range .Net 9.0 C# Utility Library combining all of my libraries
- Serialization and Deserialization (JSON, XML, Binary)
- File Management
- Collections
- Native Collections
- Randomization
- Cryptography
- Password Generation
- Encryption and Decryption (AES)
- Mathematics
- Logging
- Mini LINQ
- Clone with
git clone https://github.com/Ben-Scr/UtilityCS - Add
UtilityCS.csprojto your project
or test the features directly inUtilityPlayground.csproj.
- Install the package from NuGet:
dotnet add package UtilityCS
Take a look at Playground/Program.cs
using BenScr.Collections;
using BenScr.Collections.Native;
using BenScr.Math;
using BenScr.Random;
using BenScr.Security.Cryptography;
using BenScr.Diagnostics;
using BenScr.IO;
using BenScr.Linq;
using BenScr.Reflection;
using BenScr.Text;
using BenScr.Debugging;