6 lines
168 B
C#
6 lines
168 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface IServiceCreator<T>
|
|
{
|
|
object Create(Func<Type, object[], object> creator, params object[] parameters);
|
|
} |