Mercurial > pub > ImplabNet
view Implab/Components/IFactory.cs @ 258:d0876436d95d v3
missing file
author | cin |
---|---|
date | Fri, 13 Apr 2018 00:44:57 +0300 |
parents | 97fbbf816844 |
children |
line wrap: on
line source
using System; namespace Implab.Components { public interface IFactory<out T> { T Create(); } }