net.AvalonTeam.Base.Extensions 1.0.0.3

dotnet add package net.AvalonTeam.Base.Extensions --version 1.0.0.3
NuGet\Install-Package net.AvalonTeam.Base.Extensions -Version 1.0.0.3
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="net.AvalonTeam.Base.Extensions" Version="1.0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add net.AvalonTeam.Base.Extensions --version 1.0.0.3
#r "nuget: net.AvalonTeam.Base.Extensions, 1.0.0.3"
#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.
// Install net.AvalonTeam.Base.Extensions as a Cake Addin
#addin nuget:?package=net.AvalonTeam.Base.Extensions&version=1.0.0.3

// Install net.AvalonTeam.Base.Extensions as a Cake Tool
#tool nuget:?package=net.AvalonTeam.Base.Extensions&version=1.0.0.3

Avalon-Extensions

Extensions for .NET

I love C# extensions. This is a library that contains some of the extensions I wrote during my career for my personal projects. I hope more people will join and add more extensions that we can share.

Basic usage

The following code demonstrates basic usage of Avalon-Extensions.

using System;
using Avalon.Extension.Types;
public void TestAvalonExtensions()
{
    DateTime now = DateTime.Now;
    // Returns a flag that determinates whether the datetime is today or not.
    bool isToday = now.IsToday(); 
    // Returns the last day of the month from a provider date.
    DateTime lastDayOTheMonth = now.LastDayOfMonth(); 
    // Returns a flag that determinates whether the DateTime year is a leap year or not.
    bool isLeapYear = now.IsLeapYear();
}
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on net.AvalonTeam.Base.Extensions:

Package Downloads
Roy.Logging

Anything you want, you got it. Anything you need, you got it. Anything at all. Logging service library.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.3 655 7/16/2023
1.0.0.2 500 7/15/2023

I love C# extensions. This is a library that contains some of the extensions I wrote during my career for my personal projects. I hope more people will join and add more extensions that we can share.