Answers for "c# store generic type without arguments"

C#
0

c# store generic type without arguments

public interface IModel<out T> where T : class
{
    T Value { get; }
}

public class Model<T> : IModel<T> where T : class
{
    public T Value { get; set; }
}


class Program
{
    static void Main(string[] args)
    {
        var foo = new Model<string>()
        {
            Value = "hello world",
        };

        IModel<object> boo = foo;

        Console.WriteLine(boo.Value);
    }
}
Posted by: Guest on June-26-2020

C# Answers by Framework

Browse Popular Code Answers by Language