using System; using System.Collections.Generic; using System.Text; namespace TestIOC { class NotDisposableComponent { public ITest ITest; public NotDisposableComponent(ITest iTest) { ITest = iTest; } } }