using System; using SCG = System.Collections.Generic; public interface ISorted { void AddSorted (SCG.IEnumerable items) where T : S; } public class SortedIndexedTester { public void Test (ISorted sorted) { sorted.AddSorted (new int[] { 31, 62, 63, 93 }); } } class X { static void Main () { } }