| 123456789101112131415161718 |
- //
- // System.Runtime.CompilerServices.IndexerNameAttributecs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Runtime.CompilerServices {
- [AttributeUsage(AttributeTargets.Property, Inherited=false)] [Serializable]
- public sealed class IndexerNameAttribute : Attribute {
- public IndexerNameAttribute (string indexer_name)
- {
- }
- }
- }
|