I say this because I already created the Queue:
Queue<string> Fila = new Queue<string>();
But I can not display it,
string Pedido = (("Cliente:") + Cliente + (Environment.NewLine + "Produto:") + Produto + (Environment.NewLine + "Tamanho:") + Tamanho + (Environment.NewLine + "Quantidade") + Quantidade);
//Adiciona o pedido a memória
The other variables above are like this:
Cliente = Console.ReadLine(); //Insere na memória o que foi digitado pelo usuário.
In my attempt to view the contents of the Queue,
if (resp == "S") //se a resposta for sim, exibe mensagem de sucesso e pergunta se deseja adicionar outro pedido
{
Fila.Enqueue(Pedido);
Console.Write("Pedido Registrado! Deseja adicionar outro pedido? (S/N)");
resp = Console.ReadLine();
if (resp == "S")
{
Pedido = "";
if (resp == "Verificar Fila")
{
Console.Write("Fila: " + Fila);
}
}
What is displayed is:
Fila.Collections.Generic.Queue'1[System.String]