"c# collection of generic classes" Code Answer's

You're definitely familiar with the best coding language C# that developers use to develop their projects and they get all their queries like "c# collection of generic classes" answered properly. Developers are finding an appropriate answer about c# collection of generic classes related to the C# coding language. By visiting this online portal developers get answers concerning C# codes question like c# collection of generic classes. Enter your desired code related query in the search bar and get every piece of information about C# code related question on c# collection of generic classes. 

c# collection of generic classes

By Witty WombatWitty Wombat on Jul 15, 2020
public abstract class MyClass
{
    public abstract Type Type { get; }
}

public class MyClass<T> : MyClass
{
    public override Type Type
    {
        get { return typeof(T); }
    }

    public T Value { get; set; }
}

// VERY basic illustration of how you might construct a collection
// of MyClass<T> objects.
public class MyClassCollection
{
    private Dictionary<Type, MyClass> _dictionary;

    public MyClassCollection()
    {
        _dictionary = new Dictionary<Type, MyClass>();
    }

    public void Put<T>(MyClass<T> item)
    {
        _dictionary[typeof(T)] = item;
    }

    public MyClass<T> Get<T>()
    {
        return _dictionary[typeof(T)] as MyClass<T>;
    }
}

Source: stackoverflow.com

Add Comment

0

All those coders who are working on the C# based application and are stuck on c# collection of generic classes can get a collection of related answers to their query. Programmers need to enter their query on c# collection of generic classes related to C# code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about c# collection of generic classes for the programmers working on C# code while coding their module. Coders are also allowed to rectify already present answers of c# collection of generic classes while working on the C# language code. Developers can add up suggestions if they deem fit any other answer relating to "c# collection of generic classes". Visit this developer's friendly online web community, CodeProZone, and get your queries like c# collection of generic classes resolved professionally and stay updated to the latest C# updates. 

C# answers related to "c# collection of generic classes"

View All C# queries

C# queries related to "c# collection of generic classes"

Browse Other Code Languages

CodeProZone