Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created January 15, 2014 17:34
Show Gist options
  • Save controlflow/8440639 to your computer and use it in GitHub Desktop.
Save controlflow/8440639 to your computer and use it in GitHub Desktop.
using System;
namespace JetBrains.Annotations
{
/// <summary>
/// Indicates that IEnumarable, passed as parameter, is not enumerated.
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class NoEnumerationAttribute : Attribute
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment