I want to save very large text in a variable (SPACE INVADERS), How can I save that type of text in a variable? . I'm learning c # I need help please.
Code: ---------------------------------------------------------------------------------------------------------------------------
namespace SpaceInvaders2017
{
class Program
{
struct AtribEnemigos {
public string simbolo;
public ConsoleColor color;
public bool visible;
public int posColInicial;
public int posFilaInicial;
public float x, y;
}
static int nombre;
static AtribEnemigos Texto;
public static void MenuJuego(){
Console.Clear();
MoverNombreJuego();
}
public static void MoverNombreJuego()
{
Texto.color = ConsoleColor.DarkRed;
Texto.posColInicial = 0;
Texto.posFilaInicial = 0;
Texto.x = Texto.posColInicial;
Texto.y = Texto.posFilaInicial;
//Error here------------------------
Texto.simbolo = { "▄▀▀ █▀▄ ▄▀▄ ▄▀▀ █▀▀ . ▀█▀ █▄░█ █░░░█ ▄▀▄ █▀▄ █▀▀ █▀▄ ▄▀▀ ",
"░▀▄ █▀░ █▄█ █░░ █▀▀ . ░█░ █▀██ ░█░█░ █▄█ █░█ █▀▀ █▀▄ ░▀▄ ",
"▀▀░ ▀░░ ▀░▀ ░▀▀ ▀▀▀ . ▀▀▀ ▀░░▀ ░░▀░░ ▀░▀ ▀▀░ ▀▀▀ ▀░▀ ▀▀░"};
}
public static void PausaFotograma()
{
Thread.Sleep(40);
}
static void Main(string[] args)
{
MenuJuego();
//Console.ReadKey();
PausaFotograma();
}
}
}