Tutoriais

https://vvcestudio.com.br/pt/tutorial/dotnet/csharp/
menu

C# (C Sharp)

O C# é a principal linguagem do .Net

Exemplo simples de um copdigo em c#.

Mostrar o “Olá mundo"
x
Console.writeLine(“Olá mundo.”);

VARIAVIS

Declarando variavel no C#
x
int i;
int j = a + 2;
public int b = a + 1;
private int c = 10;

STATIC

Classe do tipo static não retorna nada.

Class estatica
x
public static class Console
{

}

IMPORTAR CLASSES

Classe do tipo static não retorna nada.

Program.cs
x
using outroarquivo;

CarrinhoItem bola = new Carrinhoitem();
bola.nome = "Bola de Futebol.";
bola.preco = 25,50M;
bola.quantidade = 5;
GitHub
Projeto de jogo desenvolvido com C#:
https://github.com/ViniciusVC/cristalbotunity.git