IndexerNameAttribute.cs 409 B

123456789101112131415161718
  1. //
  2. // System.Runtime.CompilerServices.IndexerNameAttributecs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Runtime.CompilerServices {
  10. [AttributeUsage(AttributeTargets.Property, Inherited=false)] [Serializable]
  11. public sealed class IndexerNameAttribute : Attribute {
  12. public IndexerNameAttribute (string indexer_name)
  13. {
  14. }
  15. }
  16. }