using System;
public class Program
{
interface IExampleList<out T> {}
class ExampleList<T> : IExampleList<T>{}
public static void Main(string[] args)
var exampleList = new ExampleList<string>();
IExampleList<object> iexampleList = exampleList;
Console.WriteLine("HEllo");
}