Update csharp-pt.html.markdown

This commit is contained in:
Thiago Lages de Alencar 2023-05-05 20:20:24 -03:00 committed by GitHub
parent eeb6c05ebb
commit 3ede2a1645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ on a new line! ""Wow!"", the masses cried";
intArray[1] = 1; intArray[1] = 1;
// Listas // Listas
// Listas são usadas frequentemente tanto quanto matriz por serem mais flexiveis // Listas são usadas frequentemente tanto quanto matriz por serem mais flexíveis
// O formato de declarar uma lista é o seguinte: // O formato de declarar uma lista é o seguinte:
// List<tipodado> <var nome> = new List<tipodado>(); // List<tipodado> <var nome> = new List<tipodado>();
List<int> intList = new List<int>(); List<int> intList = new List<int>();