- add clearMultitonInstance method to sample

pull/62/head
Simon G. 3 days ago
parent 2bfec513e8
commit ec4d0bcb67
Signed by: SimonG
GPG Key ID: 0B82B964BA536523
  1. 2
      Debug.LightweightIocContainer.FactoryGenerator/SampleClass.cs

@ -16,4 +16,6 @@ public interface ISampleClassFactory
ISampleClass Create(string name);
T Create<T, U, V>(U param1, V param2) where T : ISampleClass where U : class, new() where V : struct;
Task<T> CreateAsync<T, U>(U parameter) where T : ISampleClass where U : class;
void ClearMultitonInstance<T>() where T : ISampleClass;
}
Loading…
Cancel
Save