AgileCoding.Extentions.Attributes 1.0.4

There is a newer version of this package available.
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
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="AgileCoding.Extentions.Attributes" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AgileCoding.Extentions.Attributes --version 1.0.4
#r "nuget: AgileCoding.Extentions.Attributes, 1.0.4"
#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 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 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.
  • 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.

Version Downloads Last updated
2.0.6 166 7/29/2023
2.0.5 137 7/29/2023
1.0.4 161 7/20/2023
1.0.0.2 363 6/28/2021
1.0.0.1 329 6/1/2021

Cleaning up un-needed references