diff options
author | Thiago Lages de Alencar <thiagola92@gmail.com> | 2023-05-05 20:20:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 20:20:24 -0300 |
commit | 3ede2a1645cf1faf6a806ee2fe2839ad6ef4fec9 (patch) | |
tree | 071fb878e77615a469eb7261e57e91f798ccf2ae /pt-br | |
parent | eeb6c05ebbea620b30ec926f053ae5cace1070fe (diff) |
Update csharp-pt.html.markdown
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/csharp-pt.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pt-br/csharp-pt.html.markdown b/pt-br/csharp-pt.html.markdown index 475c0568..87e5b3a4 100644 --- a/pt-br/csharp-pt.html.markdown +++ b/pt-br/csharp-pt.html.markdown @@ -153,7 +153,7 @@ on a new line! ""Wow!"", the masses cried"; intArray[1] = 1; // 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: // List<tipodado> <var nome> = new List<tipodado>(); List<int> intList = new List<int>(); |