The open-generics tag has no wiki summary.
9
votes
2answers
196 views
T t = new T() is using internally Activator.CreateInstance()
Is it true that
a new constraint on a method and inside the method I do:
T t = new T()
It is using Reflection/Activator.CreateInstance method internally?
3
votes
2answers
104 views
Get all types implementing specific open generic type
How do I get all types that implementing a specific open generic type?
For instance:
public interface IUserRepository : IRepository<User>
Find all types that implement IRepository<>.
...
2
votes
1answer
83 views
Autofac decorating open generics registered using assembly scanning
I'm trying to apply autofac decorator support feature to my scenario with no success.
It looks like in my case it doesn't assign the name to the registrations properly.
Is there a way to register ...
2
votes
1answer
43 views
How to declare variable for open generic type? Possible?
Is there a way to declare a vaiable for an open generic type?
Given: There is a generic class Logger that users get from a factory method. Is there a way to have a variable that can hold ANY logger?
...
2
votes
3answers
450 views
Pattern for exposing non-generic version of generic interface
Say I have the following interface for exposing a paged list
public interface IPagedList<T>
{
IEnumerable<T> PageResults { get; }
int CurrentPageIndex { get; }
int ...
2
votes
1answer
97 views
Unity 2 - Open Generics. Register with precedence
Is it possible to use unity like so:
container.Register(typeof(IMyType<car>), typeof(MyType1<car>));
container.Register(typeof(IMyType<>), typeof(MyType2<>));
.. so that ...
0
votes
1answer
112 views
structuremap register open generic types for all types implementing some interface
I want to register all my types implementing IManager so that they can be used as the type T for the generic Lazy class.
For example:
public TetraRadioPropertyUpdater(Lazy<IRadioManager> ...
0
votes
2answers
72 views
StructureMap error resolving Open Generic dependency
So I've wired up my open generic plugin in StructureMap like so
scan.ConnectImplementationsToTypesClosing(typeof(IRepository<>));
But still get the dreaded
No Default Instance defined ...