VOOZH about

URL: https://www.nuget.org/packages/Atc/3.0.174

⇱ NuGet Gallery | Atc 3.0.174




👁 Image
Atc 3.0.174

dotnet add package Atc --version 3.0.174
 
 
NuGet\Install-Package Atc -Version 3.0.174
 
 
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="Atc" Version="3.0.174" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Atc" Version="3.0.174" />
 
Directory.Packages.props
<PackageReference Include="Atc" />
 
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 Atc --version 3.0.174
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Atc, 3.0.174"
 
 
#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 Atc@3.0.174
 
 
#: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=Atc&version=3.0.174
 
Install as a Cake Addin
#tool nuget:?package=Atc&version=3.0.174
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Atc

Target Frameworks: netstandard2.0, net9.0, net10.0

The foundation library for .NET development, providing a comprehensive collection of common utilities, extension methods, and helpers. Multi-targeting ensures compatibility with a wide range of .NET applications, from .NET Framework 4.7.2+ to the latest .NET versions.

Why Use This Library?

Atc eliminates boilerplate code and provides battle-tested implementations for common tasks. Instead of writing the same utility code in every project, Atc provides:

  • Rich Extension Methods: Extensions for all common .NET types (String, DateTime, Enum, Collections, etc.)
  • Logging Utilities: Structured logging helpers for ILogger
  • Data Structures: Specialized collections and data structures
  • Serialization Helpers: JSON serialization utilities with sensible defaults
  • Math & Geometry: Math operations, geospatial calculations, and coordinate systems
  • Networking Helpers: Network information and IP address utilities

Perfect for:

  • Reducing boilerplate in business applications
  • Standardizing common operations across projects
  • Improving code readability with expressive extension methods
  • Building reusable libraries

Installation

dotnet add package Atc

Target Frameworks

  • .NET Standard 2.1
  • .NET 9.0

The library multi-targets to provide broad compatibility with:

  • .NET Framework 4.7.2+
  • .NET Core 2.1+
  • .NET 5+
  • .NET 9.0

Key Dependencies

  • Microsoft.Extensions.Logging.Abstractions
  • System.Text.Json
  • System.ComponentModel.Annotations
  • Meziantou.Polyfill (for backward compatibility)

Main Components

Extension Methods (Extensions/)

Organized by category:

  • BaseTypes: String, Int, Double, Bool, Enum, DateTime, TimeSpan
  • Collections: List, Dictionary, IEnumerable, Array
  • Reflection: Type, Assembly, MethodInfo
  • Serialization: JSON serialization helpers
  • Stream: Stream and byte array operations

Logging (Logging/)

  • ILogger extensions for structured logging
  • LogKeyValueItem for key-value pair logging
  • LogItemFactory for creating log items

Math & Geometry (Math/)

  • MathEx: Extended math operations
  • GeoSpatial calculations and coordinates
  • Cartesian and geographic coordinate systems

Helpers

  • NetworkInformationHelper: Network connectivity and IP address utilities
  • JsonSerializerOptionsFactory: Preconfigured JSON serialization options

Data Structures

  • Specialized collections
  • Custom data structures for common scenarios

Resources

Localized resources for:

  • English (default)
  • Danish (da-DK)
  • German (de-DE)

Code Documentation

Examples

ILogger examples

Using logger.LogKeyValueItems(..)

 // Collect data
 var logItems = new List<LogKeyValueItem>
 {
 new LogKeyValueItem(LogCategoryType.Error, "Key1", "Error1"),
 new LogKeyValueItem(LogCategoryType.Warning, "Key2", "Warning1"),
 new LogKeyValueItem(LogCategoryType.Information, "Key3", "Information1"),
 LogItemFactory.CreateError("Key4", "Error2"),
 LogItemFactory.CreateWarning("Key5", "Warning2"),
 LogItemFactory.CreateInformation("Key6", "Information2"),
 };

 // Log data
 logger.LogKeyValueItems(logItems);

Using logger.LogKeyValueItem(..)

 // Collect data
 var logItem = LogItemFactory.CreateError("Key1", "Error1");

 // Log data
 logger.LogKeyValueItem(LogItemFactory.CreateError(logItem));

TimeSpanExtensions examples

Using GetPrettyTime() or GetPrettyTime(decimalPrecision)

The default value for decimalPrecision is 3.

var stopwatch = Stopwatch.StartNew();

DoSomthingThatTakesLongTime();

stopwatch.Stop();

Console.WriteLine($"Running time: {stopwatch.Elapsed.GetPrettyTime()}");

Result format could look like:

Running time: 14,015 sec
Running time: 13,234 min
Running time: 12,213 hours

NetworkInformationHelper examples

Using HasConnection()

This helper method ask a external internet service (GoogleDNS ping), to see it there is connection.

bool hasConnection = NetworkInformationHelper.HasConnection()

Using GetPublicIpAddress()

This helper method ask a external internet service (ipify.org), to get the external ip address.

IPAddress? ipAddress = NetworkInformationHelper.GetPublicIpAddress()

String Extension Examples

Using EnsureFirstCharacterToUpper()

string result = "hello world".EnsureFirstCharacterToUpper();
// Result: "Hello world"

Using IsDigit(), IsNumeric(), and Validation Extensions

bool isDigit = "12345".IsDigit(); // true
bool isNumeric = "123.45".IsNumeric(); // true
bool isEmail = "user@example.com".IsEmailAddress(); // true
bool isGuid = "550e8400-e29b-41d4-a716-446655440000".IsGuid(); // true

Using Truncate()

string longText = "This is a very long text that needs truncation";
string short = longText.Truncate(20);
// Result: "This is a very lo..."

Using ToTitleCase() and ToPascalCase()

string title = "hello world".ToTitleCase(); // "Hello World"
string pascal = "hello world".ToPascalCase(); // "HelloWorld"
string camel = "HelloWorld".ToCamelCase(); // "helloWorld"

Enum Extension Examples

Using GetName() and GetDescription()

public enum Status
{
 [Description("Currently Active")]
 Active,

 [Description("Temporarily Inactive")]
 Inactive
}

Status status = Status.Active;
string name = status.GetName(); // "Active"
string description = status.GetDescription(); // "Currently Active"

Using GetEnumValue<T>()

Status status = EnumExtensions.GetEnumValue<Status>("Active");
// Result: Status.Active

// With description
Status statusFromDescription = EnumExtensions.GetEnumValueFromDescription<Status>("Currently Active");
// Result: Status.Active

Collection Extension Examples

Using AddIfNotContains()

var list = new List<string> { "apple", "banana" };
list.AddIfNotContains("orange"); // Adds "orange"
list.AddIfNotContains("apple"); // Does nothing, already exists

Using ForEach()

var numbers = new List<int> { 1, 2, 3, 4, 5 };
numbers.ForEach(n => Console.WriteLine(n * 2));

Using IsNullOrEmpty()

List<string>? list = null;
bool isEmpty = list.IsNullOrEmpty(); // true

list = new List<string>();
isEmpty = list.IsNullOrEmpty(); // true

list.Add("item");
isEmpty = list.IsNullOrEmpty(); // false

DateTime Extension Examples

Using GetAge()

DateTime birthDate = new DateTime(1990, 5, 15);
int age = birthDate.GetAge(); // Current age in years

Using GetPrettyTimeDiff()

DateTime past = DateTime.Now.AddMinutes(-45);
string diff = past.GetPrettyTimeDiff();
// Result: "45 minutes ago"

Using IsBetween()

DateTime now = DateTime.Now;
DateTime start = DateTime.Now.AddHours(-1);
DateTime end = DateTime.Now.AddHours(1);

bool isBetween = now.IsBetween(start, end); // true

JSON Serialization Examples

Using JsonSerializerOptionsFactory

using Atc.Serialization;

// Create default options
var options = JsonSerializerOptionsFactory.Create();

// Serialize with camelCase
var json = JsonSerializer.Serialize(myObject, options);

// Deserialize
var obj = JsonSerializer.Deserialize<MyType>(json, options);

Math and Geometry Examples

Using GeoSpatial Helpers

using Atc.Math.GeoSpatial;

var coordinate1 = new CartesianCoordinate(55.6761, 12.5683); // Copenhagen
var coordinate2 = new CartesianCoordinate(51.5074, -0.1278); // London

// Calculate distance in kilometers
double distance = coordinate1.DistanceTo(coordinate2);

Contributing

Contributions are welcome! Please see the main for contribution guidelines.

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (35)

Showing the top 5 NuGet packages that depend on Atc:

Package Downloads
Atc.Rest

Atc.Rest is a basic collection of classes and extension methods for ASP.NET Core WebApi.

Atc.CodeDocumentation

Atc.CodeDocumentation is a markdown generator for source code.

Atc.OpenApi

Atc.OpenApi is a collection of classes and extension methods for Microsoft.OpenApi.

Atc.XUnit

Atc.XUnit is a collection of helper method for code compliance of documentation and tests.

Atc.Rest.ApiGenerator

Atc.Rest.ApiGenerator is a WebApi C# code generator using a OpenApi 3.0.x specification YAML file.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.174 184 6/24/2026
3.0.173 117 6/24/2026
3.0.172 105 6/24/2026
3.0.67 3,134 4/25/2026
3.0.46 1,101 4/15/2026
3.0.45 549 4/10/2026
3.0.44 1,129 4/9/2026
3.0.43 236 4/9/2026
3.0.41 301 4/9/2026
3.0.40 273 4/9/2026
3.0.18 4,891 2/9/2026
3.0.16 5,956 12/15/2025
3.0.12 510 11/28/2025
3.0.9 754 11/21/2025
3.0.8 3,790 11/14/2025
3.0.4 2,296 11/6/2025
2.0.562 6,683 9/4/2025
2.0.561 446 9/4/2025
2.0.560 461 9/3/2025
2.0.558 615 8/22/2025
Loading failed