//Define the Receiver Object.

//The Receiver class (object) contains the logic required to action the relevant command.
public class Receiver
{
private string _mName;
private string _mOldpage;
private StringBuilder _mPage = new StringBuilder();

public string ClipBoard { get; set; }

public Receiver(string name)
{
_mName = name;
}

public void Paste()
{
_mOldpage = _mPage.ToString();
_mPage.Append(ClipBoard);
_mPage.Append("\n");
}

public void Print()
{
Console.WriteLine("File {0} at {1}\n{2}", _mName, DateTime.Now.ToString(), _mPage);
}

public void Restore()
{
_mPage.Length = 0;
_mPage.Append(_mOldpage);
}
}