using System;
using System.Runtime.InteropServices;
namespace System.Runtime.CompilerServices
{
/// Indicates the name by which an indexer is known in programming languages that do not support indexers directly.
// Token: 0x02000044 RID: 68
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
[ComVisible(true)]
[Serializable]
public sealed class IndexerNameAttribute : Attribute
{
/// Initializes a new instance of the class.
/// The name of the indexer, as shown to other languages.
// Token: 0x0600065F RID: 1631 RVA: 0x00014AF0 File Offset: 0x00012CF0
public IndexerNameAttribute(string indexerName)
{
}
}
}