Skip to content
Enes Okullu edited this page Apr 22, 2024 · 1 revision

Set melodies

SetStartMethodMelody(Melody melody);
  • Sets Melody while starting of method.
SetEndingMethodMelody(Melody melody);
  • Sets Melody while ending of method.

Method's starting

StartingMethod();
  • Writes caller method's name into the screen with adding " started...".
StartingMethod(ConsoleColor consoleColor);
  • Writes caller method's name with specified color into the screen with adding " started...".
StartingMethod(Melody melody);
  • Writes caller method's name with beeping specified melody into the screen with adding " started...".
StartingMethod(ConsoleColor color, Melody melody);
  • Writes caller method's name with specified color and beeping specified melody into the screen with adding " started...".

Method's ending

EndingMethod();
  • Writes caller method's name into the screen with adding " started...".
EndingMethod(ConsoleColor consoleColor);
  • Writes caller method's name with specified color into the screen with adding " started...".
EndingMethod(Melody melody);
  • Writes caller method's name with beeping specified melody into the screen with adding " started...".
EndingMethod(ConsoleColor color, Melody melody);
  • Writes caller method's name with specified color and beeping specified melody into the screen with adding " started...".

Clone this wiki locally