10 lines
150 B
C#
Raw Normal View History

// Compiler options: -target:library
using System;
using System.Runtime.CompilerServices;
public interface IA {
[SpecialName]
int GetLength ();
}