view Implab/Components/IFactory.cs @ 232:133ba4444acc v2

Слияние
author cin
date Thu, 21 Sep 2017 01:14:27 +0300
parents 97fbbf816844
children
line wrap: on
line source

using System;

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