GitSharp.Core.ObjectDatabase.exists C# (CSharp) 메소드

exists() 공개 메소드

Gets if this database is already created; If it returns false, the caller should invoke create to create this database location.
public exists ( ) : bool
리턴 bool
        public virtual bool exists()
        {
            return true;
        }

Usage Example

예제 #1
0
 public override bool exists()
 {
     return(_objectDatabase.exists());
 }