Search Results

2
votes
4answers
243 views

Can you pass an instance of a generic type to other strongly-typed methods?

I have a situation where I have a method that takes a couple of overloads. I have a fairly common scenario where if some condition is true, I call one of the overloads, otherwise I call something …
0
votes

Declare a generic type instance dynamically

See the answer from the similar question "Dynamically Create a Generic Type for Template". The …
3
votes

Generic class used as constraint to generic method in C#?

Just follow the T: // ... { //... MyCollection1 collection3 = GetCollectionFromDb<MyCollection1>(Collection1Name); } private static T GetCollec …