Skip to content

Instantly share code, notes, and snippets.

@jindeveloper
Created August 21, 2020 07:22
Show Gist options
  • Select an option

  • Save jindeveloper/d99fdf7c25296a65ddde23e9c2fdc2cf to your computer and use it in GitHub Desktop.

Select an option

Save jindeveloper/d99fdf7c25296a65ddde23e9c2fdc2cf to your computer and use it in GitHub Desktop.
using CSharp_Attributes_Walkthrough.My_Custom_Attributes;
using System;
namespace CSharp_Attributes_Walkthrough.My_Custom_Attributes
{
public class AliasAttribute : Attribute
{
//....
//Added an optional-parameter
public string AlternativeName { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment