65.9K
CodeProject is changing. Read more.
Home

Alternative to Activator.CreateInstance

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.88/5 (3 votes)

Jan 31, 2012

CPOL
viewsIcon

9291

And why don't you just do this?public static T Create() where T : class, new(){ return new T();}

And why don't you just do this?

public static T Create<T>() where T : class, new()
{
    return new T();
}