AgileCoding.Extentions.Attributes
2.0.6
dotnet tool install --global AgileCoding.Extentions.Attributes --version 2.0.6
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local AgileCoding.Extentions.Attributes --version 2.0.6
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=AgileCoding.Extentions.Attributes&version=2.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
nuke :add-package AgileCoding.Extentions.Attributes --version 2.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
moving to Core