Mono.Debugger.SourceFile.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
        public override bool Equals(object o)
        {
            SourceFile file = o as SourceFile;
            if (file == null)
                return false;

            return (id == file.id) && (filename == file.filename) && (module == file.module);
        }