GitSharp.Core.FileTreeEntry.SetExecutable C# (CSharp) Method

SetExecutable() public method

public SetExecutable ( bool execute ) : void
execute bool
return void
        public void SetExecutable(bool execute)
        {
            _mode = execute ? FileMode.ExecutableFile : FileMode.RegularFile;
        }