Skip to content

Instantly share code, notes, and snippets.

@meklarian
Forked from hyrmn/gist:3429595
Created October 3, 2013 21:54
Show Gist options
  • Save meklarian/6817737 to your computer and use it in GitHub Desktop.
Save meklarian/6817737 to your computer and use it in GitHub Desktop.
[AttributeUsage(System.AttributeTargets.All, AllowMultiple = true, Inherited = true)]
public class ಠ_ಠAttribute : Attribute
{
public ILog Log { get; set; }
public ಠ_ಠAttribute()
{
Log.Info("This code is bad and you should feel bad");
}
}
[ಠ_ಠ]
public class SomeClass
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment