-
Notifications
You must be signed in to change notification settings - Fork 0
5. Method
Enes Okullu edited this page Apr 22, 2024
·
1 revision
SetStartMethodMelody(Melody melody);
- Sets
Melodywhile starting of method.
SetEndingMethodMelody(Melody melody);
- Sets
Melodywhile ending of method.
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...".
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...".