Mercurial > pub > ImplabNet
view Implab/Components/IFactory.cs @ 213:9ee78a345738 v2
Minor code changes
| author | cin |
|---|---|
| date | Tue, 11 Apr 2017 01:35:18 +0300 |
| parents | 97fbbf816844 |
| children |
line wrap: on
line source
using System; namespace Implab.Components { public interface IFactory<out T> { T Create(); } }
