-
Notifications
You must be signed in to change notification settings - Fork 0
9. Write
Enes Okullu edited this page Jun 27, 2024
·
4 revisions

Black, DarkBlue, DarkGreen, DarkCyan, DarkRed, DarkMagenta, DarkYellow, Gray, DrakGray, Blue, Green, Cyan, Red, Magenta, Yellow and White.
AllLightColors, AllDarkColors, GrayToneColors, BlueToneColors, GreenToneColors, BlueToneColors, GreenToneColors, CyanToneColors, RedToneColors, MagentaToneColors, YellowToneColors, BlackWhiteColors.
Write<T>(T value, ConsoleColor color);
- Writes value with specified foreground color.
Write<T>(T value, ConsoleColor bgColor, ConsoleColor fgColor);
- Writes values with specified background and foreground color.
Write<T>(T value, Melody melody);
- Writes value with beeping specified melody.
Write<T>(T value, ConsoleColor color, Melody melody);
- It calls
Write<T>(T value, Console color)and beeps viaBeeps(melody)
Write<T>(List<T> valueList, T expectedValue, ConsoleColor valueColor, ConsoleColor expectedColor);
- Writes values with specified valueColor and use expectedColor to write expectedValue during writing of the list.
Write<T>(List<T> valueList, T expectedValue, Melody melody, ConsoleColor valueColor, ConsoleColor expecetedColor);
- Writes values with specified valueColor also beeping specified melody and use expectedColor to write expectedValue during writing of the list.
Write<T>(T[] valueArray, T expectedValue, ConsoleColor valueColor, ConsoleColor expectedColor);
- Writes values with specified valueColor and use expectedColor to write expectedValue during writing of the list.
Write<T>(T[] valueArray, T expectedValue, Melody melody, ConsoleColor valueColor, ConsoleColor expectedColor)
- Writes values with specified valueColor also beeping specified melody and use expectedColor to write expectedValue during writing of the list.
Write<T>(T[] valueArray, ConsoleColor[] colorList)
- Writes values with items of specified color array.
WriteLine<T>(T value, ConsoleColor color);
- Writes value with specified color with new line.
WriteLine<T>(T value, ConsoleColor bgColor, ConsoleColor fgColor);
- Writes values with specified background and foreground color.
WriteLine(T value, Melody melody);
- Writes value with beeping specified melody.
WriteLine<T>(T value, ConsoleColor color, Melody melody);
- It calls
Write<T>(T value, Console color)and beeps viaBeeps(melody)
WriteLine<T>(List<T> valueList, T expectedValue, ConsoleColor valueColor, ConsoleColor expectedColor);
- Writes values with specified valueColor and use expectedColor to write expectedValue during writing of the list with new line each.
WriteLine<T>(List<T> valueList, T expectedValue, Melody melody, ConsoleColor valueColor, ConsoleColor expectedColor);
- Writes values with specified valueColor also beeping specified melody and use expectedColor to write expectedValue during writing of the list.
WriteLine<T>(T[] valueArray, T expectedValue, ConsoleColor valueColor, ConsoleColor expectedColor);
- Writes values with specified valueColor and use expectedColor to write expectedValue during writing of the list.
WriteLine<T>(T[] valueArray, T expectedValue, Melody melody, ConsoleColor valueColor, ConsoleColor expectedColor)
- Writes values with specified valueColor also beeping specified melody and use expectedColor to write expectedValue during writing of the list.
WriteLine<T>(T[] valueArray, ConsoleColor[] colorList)
- Writes values with items of specified color array.