示例#1
0
 public void UtterAnEpicPhrase()
 {
     Console.WriteLine(_phrases[_rnd.Next(_phrases.Length)]);
     PhraseUttered?.Invoke(this, EventArgs.Empty);
 }
示例#2
0
 public void UtterAnEpicPhrase()
 {
     Console.WriteLine("I'll be back!");
     PhraseUttered?.Invoke(this, EventArgs.Empty);
 }