DotNetExtras.Common 1.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetExtras.Common --version 1.0.6
                    
NuGet\Install-Package DotNetExtras.Common -Version 1.0.6
                    
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="DotNetExtras.Common" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetExtras.Common" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="DotNetExtras.Common" />
                    
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 DotNetExtras.Common --version 1.0.6
                    
#r "nuget: DotNetExtras.Common, 1.0.6"
                    
#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 DotNetExtras.Common@1.0.6
                    
#: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=DotNetExtras.Common&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=DotNetExtras.Common&version=1.0.6
                    
Install as a Cake Tool

DotNetExtras.Common

DotNetExtras.Common is a general-purpose .NET Core library that simplifies common operations frequently used in .NET applications.

Use the DotNetExtras.Common library to:

  • Generate fully qualified names for types, variables, and object properties in the original or camelCase notation (think of the nameof operator on steroids).
  • Retrieve application assembly information including company, version, and product details.
  • Retrieve error information from exceptions, including immediate and inner exceptions.
  • Convert objects to and from JSON strings via the System.Text.Json (STJ) serialization.
  • Convert collections to comma-separated (or tokenized) string.
  • Compare complex object for equivalence or partial equivalence (by property, key, or element).
  • Get and set object values using compound (nested) property names (create property hierarchy if necessary).
  • Access enumeration metadata like descriptions, abbreviations, and custom attributes.
  • Check if objects are empty.
  • Determine if an object is primitive or a complex type.

Usage

The following examples illustrates some operations implemented by the DotNetExtras.Common library.

DotNetExtras.Common.NameOf class

Generate fully qualified or partial names for types, variables, and object properties:

// Prints: Some.Type.Property.SubProperty
Console.WriteLine(NameOf.Full(nameof(Some.Type.Property.SubProperty)));

// Prints: some.type.property.subProperty
Console.WriteLine(NameOf.Full(nameof(Some.Type.Property.SubProperty), true));

// Prints: Property.SubProperty
Console.WriteLine(NameOf.Long(someObject.Property.SubProperty)));

// Prints: property.subProperty
Console.WriteLine(NameOf.Long(someObject.Property.SubProperty), true));

// Prints: SubProperty
Console.WriteLine(NameOf.Short(someObject.Property.SubProperty)));

// Prints: subProperty
Console.WriteLine(NameOf.Short(someObject.Property.SubProperty), true));

DotNetExtras.Common.PrimaryAssembly class

Given the following csproj file settings:

<PropertyGroup>
  <AssemblyName>MyApp</AssemblyName>
  <Version>1.0.8</Version>
  <Title>$(AssemblyName)</Title>
  <Copyright>� 2023 MyCompany</Copyright>
</PropertyGroup>

Print the application assembly information as MyApp v1.0.8 � 2023 MyCompany:

Console.WriteLine($"{PrimaryAssembly.Title} v{PrimaryAssembly.Version} {PrimaryAssembly.Copyright}");

DotNetExtras.Common.Exceptions.ExceptionExtensions class

Print exception messages from the immediate and all inner exceptions:

try
{
  try
  {
  	throw new Exception("Cannot do that");
  }
  catch (Exception ex)
  {
  	throw new Exception("Failed to do this", ex);
  }
}
catch (Exception ex)
{
  Console.WriteLine(ex.GetMessages());
}

In the example above, the output will be:

Failed to do this. Cannot do that.

DotNetExtras.Common.Extensions.IEnumerable class

Convert list or array values to delimited strings:

List<string> strings = ["one", "two", "tree"];
int[] numbers = [1, 2, 3];

Console.WriteLine("Strings: " + strings.ToCsv() + ".");
Console.WriteLine("Strings: " + strings.ToCsv(";") + ".");
Console.WriteLine("Numbers: " + numbers.ToCsv("|") + ".");

In the example above, the output will be:

Strings: one, two, three.
Strings: one;two;three.
Numbers: 1|2|3.

DotNetExtras.Common.Extensions.ObjectExtensions class

Given the class definitions:

public class Name
{
    public string GivenName { get; set; } = string.Empty;
    public string Surname { get; set; } = string.Empty;
}

public class User
{
    public Name Name { get; set; } = new Name();
}

Set and get the nested property value using the compound property name.

User user = new();

// Set the nested property value using a compound property name.
user.SetPropertyValue("Name.Surname", "Johnson");

// Get a nested property value using a compound property name.
string surname = user.GetPropertyValue<string>("Name.Surname");

Check if an object holds any properties with non-default values.

User user = new();
bool isEmpty = user.IsEmpty(); // true
user.Name = new()
{
    GivenName = "Alice";
}
isEmpty = user.IsEmpty(); // false

Compare two complex objects for equivalence or partial equivalence.

User userA = new()
{
    Name = new()
    {
        GivenName = "Alice",
        Surname = "Johnson"
    }
};

User userB = new()
{
    Name = new()
    {
        GivenName = "Alice",
    }
};

// Compare two arrays for partial equivalence.
bool almostTheSame;

almostTheSame = userB.IsPartialEquivalentTo(userA)); // true
almostTheSame = userA.IsPartialEquivalentTo(userB)); // false

userB.Name.Surname = "Johnson";

userB.IsEquivalentTo(userA)); // true
userA.IsEquivalentTo(userB)); // true

Keep in mind that partially equivalent objects may not be equivalent, but equivalent objects are always partially equivalent. In addition to comparing objects, you can also compare arrays, lists, dictionaries, hash sets, and primitive types. For the explanation of the equivalence and partial equivalence rules, see the class and method documentation.

DotNetExtras.Common.Json.JsonExtensions class

Serialize and deserialize objects to and from JSON strings:

User user = new()
{
    Name = new()
    {
        GivenName = "Alice",
        Surname = "Johnson"
    }
};

string json = user.ToJson();

user = json.FromJson<User>();

Enum metadata definition and access classes

Set the metadata attributes for enumeration values:

public enum Something
{
    [Description("Description 1")]
    [Abbreviation("ABBR1")]
    [ShortName("Short1")]
    Value1,

    [Description("Description 2")]
    [Abbreviation("ABBR2")]
    [ShortName("Short2")]
    Value2,
}

Get the metadata attributes for enumeration values:

Something something = Something.Value1;

// Prints: Description 1
Console.WriteLine(something.ToDescription());

// Prints: ABBR1
Console.WriteLine(something.ToAbbreviation());

// Prints: Short1
Console.WriteLine(something.ToShortName());

Documentation

For complete documentation, usage details, and code samples, see:

Package

Install the latest version of the DotNetExtras.Common NuGet package from:

See also

Check out other DotNetExtras libraries at:

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 was computed.  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 was computed.  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.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on DotNetExtras.Common:

Package Downloads
DotNetExtras.Security

A .NET Core library implementing security functions, such as random password generation, encryption, hashing, etc.

DotNetExtras.Extended

A .NET Core library implementing less frequently used general-purpose operations.

DotNetExtras.OData

A .NET Core library implementing OData filter parsing and validation functions.

DotNetExtras.Testing

A .NET Core library implementing helper functions for unit testing and validation based on xUnit.

DotNetExtras.Mail

A .NET Core library implementing mail template functionality based on the Razor syntax.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.12 129 9/18/2025
1.0.11 133 9/18/2025
1.0.10 155 9/16/2025
1.0.9 160 9/10/2025
1.0.8 128 9/10/2025
1.0.7 124 9/10/2025
1.0.6 135 9/9/2025
1.0.5 208 8/28/2025
1.0.2 150 8/25/2025
1.0.0 156 8/11/2025

Renamed the IsPartiallyEquivalentTo extension method to IsPartialEquivalentTo.