8 lines
124 B
C#
8 lines
124 B
C#
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
public interface IFoo
|
||
|
{
|
||
|
[IndexerName ("Jaj")]
|
||
|
object this [int i] { get; set; }
|
||
|
}
|