File: system\runtime\compilerservices\indexernameattribute.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
namespace System.Runtime.CompilerServices
{
    using System;
 
[Serializable]
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
[System.Runtime.InteropServices.ComVisible(true)]
    public sealed class IndexerNameAttribute: Attribute
    {
        public IndexerNameAttribute(String indexerName)
        {}
    }
}