Skip to content

Instantly share code, notes, and snippets.

@drovani
Created April 30, 2015 21:57
Show Gist options
  • Save drovani/c2d47501e3d97a6303ab to your computer and use it in GitHub Desktop.
Save drovani/c2d47501e3d97a6303ab to your computer and use it in GitHub Desktop.
NotImplementedAttribute
using System;
namespace Vigil.Data.Core.Attributes
{
public class NotImplementedAttribute : Attribute
{
public NotImplementedAttribute()
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment