티스토리 뷰
using System;
using System.Collections.Generic;
namespace Console1
{
class Program
{
static void Main(string[] args)
{
List<string> animals = new List<string>();
animals.Add("cat");
animals.Add("dog");
animals.Add("fox");
foreach (string animal in animals)
{
Console.WriteLine(animal);
}
}
}
}
/* Output
cat
dog
fox
*/
using System;
using System.Collections.Generic;
namespace Console1
{
class Program
{
static void Main(string[] args)
{
List<string> animals = new List<string>() { "cat", "dog", "fox" };
foreach (string animal in animals)
{
Console.WriteLine(animal);
}
}
}
}
/* Output
cat
dog
fox
*/
'Series' 카테고리의 다른 글
for [C/C++] int (0) | 2018.06.21 |
---|---|
for [Java] int (0) | 2018.06.20 |
for foreach [C#] int (0) | 2018.06.20 |
for [Python] List (0) | 2018.06.20 |
for [Python] range (0) | 2018.06.20 |