Git.Core.ObjectStore.LsTree C# (CSharp) Method

LsTree() private method

private LsTree ( Tree tree ) : void
tree Tree
return void
        private void LsTree(Tree tree)
        {
            Console.Write (tree);
        }

Same methods

ObjectStore::LsTree ( string hexstring ) : void

Usage Example

Example #1
0
 public static void LsTreeTest(string tree, string path)
 {
     ObjectStore store = new ObjectStore (path);
     store.LsTree (tree);
 }