view Implab/Components/IFactory.cs @ 239:eedf4d834e67 v2

fix
author cin
date Wed, 13 Dec 2017 19:54:45 +0300
parents 97fbbf816844
children
line wrap: on
line source

using System;

namespace Implab.Components {
    public interface IFactory<out T> {
        T Create();
    }
}