Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Sub WriteLineC(ByVal Text As String, ByVal Color As ConsoleColor, Optional RevertColor As Boolean = True)
- Dim crntC As ConsoleColor = Console.ForegroundColor
- Console.ForegroundColor = Color
- Console.WriteLine(Text)
- If RevertColor Then Console.ForegroundColor = crntC
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment