Net.AvalonTeam.Base.Extensions
1.0.0.2
See the version list below for details.
dotnet add package Net.AvalonTeam.Base.Extensions --version 1.0.0.2
NuGet\Install-Package Net.AvalonTeam.Base.Extensions -Version 1.0.0.2
<PackageReference Include="Net.AvalonTeam.Base.Extensions" Version="1.0.0.2" />
paket add Net.AvalonTeam.Base.Extensions --version 1.0.0.2
#r "nuget: Net.AvalonTeam.Base.Extensions, 1.0.0.2"
// Install Net.AvalonTeam.Base.Extensions as a Cake Addin #addin nuget:?package=Net.AvalonTeam.Base.Extensions&version=1.0.0.2 // Install Net.AvalonTeam.Base.Extensions as a Cake Tool #tool nuget:?package=Net.AvalonTeam.Base.Extensions&version=1.0.0.2
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. 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. |
-
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.