Sep.Git.Tfs.Commands.Branch.IsCommandWellUsed C# (CSharp) Method

IsCommandWellUsed() public method

public IsCommandWellUsed ( ) : bool
return bool
        public bool IsCommandWellUsed()
        {
            //Verify that some mutual exclusive options are not used together
            return new[] { ShouldDeleteRemote, ShouldInitBranch, ShouldRenameRemote }.Count(b => b) <= 1;
        }