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
<PackageReference Include="net.AvalonTeam.Base.Extensions" Version="1.0.0.3" />
paket add net.AvalonTeam.Base.Extensions --version 1.0.0.3
#r "nuget: net.AvalonTeam.Base.Extensions, 1.0.0.3"
// 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 | Versions 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. |
-
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.
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.