示例#1
0
 public override void ReturnContents(Jewels safeContents, Owner owner)
 {
     stolenJewels = safeContents;
     Console.WriteLine("I'm stealing the contents! " + stolenJewels.Sparkle());
 }
示例#2
0
 public void ReceiveContents(Jewels safeContents)
 {
     returnedContents = safeContents;
     Console.WriteLine("Thank you for returning my jewels! " + safeContents.Sparkle());
 }