You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stepaside edited this page Jul 28, 2012
·
3 revisions
ICustomer instance
varcreated=ObjectFactory.Create<ICustomer>();
Customer instance
// This is obviousvarcreated=newCustomer();// However ObjectFactory.Create can be used with classes as wellvarcreated=ObjectFactory.Create<Customer>();// This is generally faster than Activator.CreateInstance<Customer>()