Akka.Interfaced.AkkaReceiverNotificationChannel.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool
        public override bool Equals(object obj)
        {
            var c = obj as AkkaReceiverNotificationChannel;
            if (c == null)
                return false;

            return Receiver.Equals(c.Receiver);
        }