Ejemplo n.º 1
0
 public bool MoveToParent()
 {
     if (this._location.IsRoot)
         return false;
     else
     {
         this._location = this._location.Parent;
         return true;
     }
 }
Ejemplo n.º 2
0
 public void MoveToRoot()
 {
     this._location = this._location.Root;
 }
Ejemplo n.º 3
0
 //        private GitOBj _object;
 public RepositoryNavigator(LibGit2Sharp.IRepository git, Location location = null)
 {
     this._git = git;
     this._location = location;
       //          this._object
 }