GitCommands.GitModule.Equals C# (CSharp) Method

Equals() private method

private Equals ( GitModule other ) : bool
other GitModule
return bool
        bool Equals(GitModule other)
        {
            return
                string.Equals(_workingDir, other._workingDir) &&
                Equals(_superprojectModule, other._superprojectModule);
        }

Same methods

GitModule::Equals ( object obj ) : bool
GitModule