##// END OF EJS Templates
README.md edited online with Bitbucket
README.md edited online with Bitbucket

File last commit:

r156:97fbbf816844 v2
r282:12b89f1cfe9f default
Show More
IFactory.cs
8 lines | 116 B | text/x-csharp | CSharpLexer
using System;
namespace Implab.Components {
public interface IFactory<out T> {
T Create();
}
}