Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ILazy.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 302d6dc595e23c8659d3b73d1174ff1098411be5 (plain)
1
2
3
4
5
6
7
namespace LibGit2Sharp.Core
{
    internal interface ILazy<T>
    {
        T Value { get; }
    }
}