mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 10:01:38 +00:00
[csharp/pt-br] Missing translation
This commit is contained in:
parent
dff76c7965
commit
03b67fff48
@ -407,12 +407,12 @@ on a new line! ""Wow!"", the masses cried";
|
||||
return result;
|
||||
}
|
||||
|
||||
// You can narrow down the objects that are passed in
|
||||
// Você pode pode restringir os objetos que são passados
|
||||
public static void IterateAndPrint<T>(T toPrint) where T: IEnumerable<int>
|
||||
{
|
||||
// We can iterate, since T is a IEnumerable
|
||||
// Nos podemos iterar, desde que T seja um "IEnumerable"
|
||||
foreach (var item in toPrint)
|
||||
// Item is an int
|
||||
// Item é um inteiro
|
||||
Console.WriteLine(item.ToString());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user