GitSharp.Core.DirectoryCache.DirCache.builder C# (CSharp) Method

builder() public method

Create a new builder to update this cache. Callers should add all entries to the builder, then use DirCacheBuilder.finish() to update this instance.
public builder ( ) : DirCacheBuilder
return DirCacheBuilder
		public DirCacheBuilder builder()
		{
			return new DirCacheBuilder(this, _entryCnt + 16);
		}