#if !LOCALTEST
using System;
namespace System.Runtime.CompilerServices {
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public sealed class IndexerNameAttribute : Attribute {
public IndexerNameAttribute(string indexName) {
}
}
}
#endif