Newer
Older
DNA / corlib / System.Runtime.CompilerServices / IndexerNameAttribute.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 263 bytes First commit
#if !LOCALTEST

using System;

namespace System.Runtime.CompilerServices {

	[AttributeUsage(AttributeTargets.Property, Inherited = true)]
	public sealed class IndexerNameAttribute : Attribute {

		public IndexerNameAttribute(string indexName) {
		}

	}
}
#endif