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

DirCache() public method

Create a new in-core index representation. The new index will be empty. Callers may wish to read from the on disk file first with read().
public DirCache ( FileInfo indexLocation ) : System
indexLocation System.IO.FileInfo location of the index file on disk.
return System
		public DirCache(FileInfo indexLocation)
		{
			_liveFile = indexLocation;
			clear();
		}