C# (C Sharp)
O C# é a principal linguagem do .Net
Exemplo simples de um copdigo em c#.
Show “Hello world”
x
Console.writeLine(“Hello world”);
VARIAVIS
Declarando variavel no C#:
x
int i;
int j = a + 2;
public int b = a + 1;
private int c = 10;
int j = a + 2;
public int b = a + 1;
private int c = 10;
STATIC
Classe do tipo static não retorna nada.
Static class
x
public static class Console
{
}
{
}
IMPORTAR CLASSES
Static class does not return anything.
Program.cs
x
using outroarquivo;
CarrinhoItem bola = new Carrinhoitem();
bola.nome = "Bola de Futebol.";
bola.preco = 25,50M;
bola.quantidade = 5;
CarrinhoItem bola = new Carrinhoitem();
bola.nome = "Bola de Futebol.";
bola.preco = 25,50M;
bola.quantidade = 5;

Game project developed with C#:
https://github.com/ViniciusVC/cristalbotunity.git
https://github.com/ViniciusVC/cristalbotunity.git