IFactory.cs
8 lines
| 116 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | ||
namespace Implab.Components { | ||||
public interface IFactory<out T> { | ||||
T Create(); | ||||
} | ||||
} | ||||