CSharpMediator.NonBeatle.Receive C# (CSharp) Method

Receive() public method

public Receive ( string from, string message ) : void
from string
message string
return void
        public override void Receive(string from, string message)
        {
            Console.Write("To a none-Beatle:");
            base.Receive(from, message);
        }
    }