I just want to know how to create simple animations like blinking, moving stuffs on C# console applications. Is there any special method for this?
You'll need to use Console.ForegroundColor, Console.BackgroundColor and Console.SetCursorPosition(int, int)
Console.ForegroundColor
Console.BackgroundColor
Console.SetCursorPosition(int, int)
EDIT: For inspiration, Let's Dance