AgileCoding.Extentions.Attributes
1.0.4
See the version list below for details.
dotnet add package AgileCoding.Extentions.Attributes --version 1.0.4
NuGet\Install-Package AgileCoding.Extentions.Attributes -Version 1.0.4
<PackageReference Include="AgileCoding.Extentions.Attributes" Version="1.0.4" />
paket add AgileCoding.Extentions.Attributes --version 1.0.4
#r "nuget: AgileCoding.Extentions.Attributes, 1.0.4"
// Install AgileCoding.Extentions.Attributes as a Cake Addin #addin nuget:?package=AgileCoding.Extentions.Attributes&version=1.0.4 // Install AgileCoding.Extentions.Attributes as a Cake Tool #tool nuget:?package=AgileCoding.Extentions.Attributes&version=1.0.4
AgileCoding.Extensions.Attributes NuGet Package
This NuGet package contains a single, powerful extension method that provides additional functionality to handle attribute related operations in .NET applications.
Features
The GetAttribute<ANYType>()
method, defined within the AttributeExtensions
static class, retrieves a specific attribute associated with an enum, class or any other complex type.
How to Use
using AgileCoding.Extentions.Attributes;
// assuming we have an enum with custom attributes
public enum MyEnum
{
[MyCustomAttribute("Value1")]
Value1,
[MyCustomAttribute("Value2")]
Value2,
}
public class MyCustomAttribute : Attribute
{
public MyCustomAttribute(string value)
{
Value = value;
}
public string Value { get; }
}
// To use the extension method:
MyEnum myEnumVariable = MyEnum.Value1;
var attributeValue = myEnumVariable.GetAttribute(typeof(MyCustomAttribute));
Installation
You can install this NuGet package through the following ways:
Package Manager
PM> Install-Package AgileCoding.Extentions.Attributes
.NET CLI
dotnet add package AgileCoding.Extentions.Attributes
Requirements
- .NET 6.0 or later
Contribute
This is an open source project. We encourage you to contribute to it by submitting issues, or directly contributing code.
License
This project is licensed under the terms of the MIT license.
Contact
For questions or any other feedback, please open an issue in the GitHub repository.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. 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. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Cleaning up un-needed references