DavidGroup.Core.Utilities 1.0.1

dotnet add package DavidGroup.Core.Utilities --version 1.0.1
                    
NuGet\Install-Package DavidGroup.Core.Utilities -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DavidGroup.Core.Utilities" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DavidGroup.Core.Utilities" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="DavidGroup.Core.Utilities" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DavidGroup.Core.Utilities --version 1.0.1
                    
#r "nuget: DavidGroup.Core.Utilities, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DavidGroup.Core.Utilities@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DavidGroup.Core.Utilities&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=DavidGroup.Core.Utilities&version=1.0.1
                    
Install as a Cake Tool

DavidGroup.Core.Utilities

Release Nuget

A productivity library that accelerates .NET project development by providing ready-to-use helpers for common application needs.


🚀 Getting Started

Install NuGet Package

Using the .NET CLI:

dotnet add package DavidGroup.Core.Utilities

Or via the Package Manager Console:

Install-Package DavidGroup.Core.Utilities

How to use it?

Feel free to explore the samples to find practical examples for each feature. New samples are added continuously as more features are developed.

📦 Key Features

Code generator

string code = CodeGenerator.GenerateCode(); // Example output: "A7kP2mX9"

String helpers

string propertyName = StringHelper.FirstCharToLower("UserName"); // Output: "userName"

Enum helpers

public enum Status
{
    Pending,
    Completed
}

Status status = "completed".ToEnum(Status.Pending);

Console.WriteLine(status); // Output: Completed

Other helpers

CalculateAge()

DateTime birthDate = new(1995, 8, 15);
int age = birthDate.CalculateAge();

Console.WriteLine(age);
// Output: 30 (depending on the current date)

Map()

decimal progress = 50m.Map(0m, 100m, 0m, 1m);

Console.WriteLine(progress);
// Output: 0.5

IsInRange()

bool isWithin = CommonUtilities.IsInRange(1, 10, 3, 7);

Console.WriteLine(isWithin);
// Output: True

🤝 Contributing

Found a bug? Have an idea? Want to contribute?

Contributions of any size are appreciated!

📝 License

Distributed under the MIT license. See License for more information.

Copyright © 2025-2026 David Khachatryan (David Group Solutions)

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on DavidGroup.Core.Utilities:

Package Downloads
DavidGroup.Core.DataAccess

Foundation library containing data access abstractions, patterns, and helper extensions for .NET applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 561 6/30/2026
1.0.0 106 6/30/2026