Bickle.ReSharper.Runner.Tasks.LoadContextAssemblyTask.Equals C# (CSharp) Method

Equals() public method

public Equals ( RemoteTask other ) : bool
other RemoteTask
return bool
        public override bool Equals(RemoteTask other)
        {
            if (other == null) return false;

            return ReferenceEquals(this, other) ||
                   Equals(other as LoadContextAssemblyTask);
        }

Same methods

LoadContextAssemblyTask::Equals ( LoadContextAssemblyTask other ) : bool