Skip to content

Instantly share code, notes, and snippets.

@YurePereira
Last active April 17, 2024 04:19
Show Gist options
  • Save YurePereira/2526513ddfe2bfd6e4942677167395d4 to your computer and use it in GitHub Desktop.
Save YurePereira/2526513ddfe2bfd6e4942677167395d4 to your computer and use it in GitHub Desktop.
Criando programa com a instrução de nível superior.
using System;
using System.Collections.Generic;
List<string> colors = new List<string>()
{
"Azul", "Roxo", "Vermelho"
};
foreach (var color in colors)
{
Console.WriteLine(string.Format("Color: {0}", color));
}
using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
{
List<string> colors = new List<string>()
{
"Azul", "Roxo", "Vermelho"
};
foreach (var color in colors)
{
Console.WriteLine(string.Format("Color: {0}", color));
}
}
}
//Instrução de nível superior:
using System;
Console.WriteLine("Hello World!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment