Mercurial > pub > ImplabNet
view Implab/Components/IFactory.cs @ 261:05a87f575512 v3
Добавлена метка v3.0.6 для набора изменений 547a2fc0d93e
author | cin |
---|---|
date | Fri, 13 Apr 2018 19:15:11 +0300 |
parents | 97fbbf816844 |
children |
line wrap: on
line source
using System; namespace Implab.Components { public interface IFactory<out T> { T Create(); } }