Files
2026-06-04 11:42:34 +02:00

21 lines
789 B
C#

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