view Implab/Components/IFactory.cs @ 237:f2150c16b476 v2

missing files
author cin
date Wed, 22 Nov 2017 16:54:58 +0300
parents 97fbbf816844
children
line wrap: on
line source

using System;

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