190729 - 2 - 흐름제어
foreach 사용예시
static void Main(string[] args)
{
int[] arr = new int[] { 1995,2015,2019,2020 };
foreach (var a in arr.Select((value, index) => new { Value = value, Index = index }))
{
Console.WriteLine("[{0}]:{1}", a.Index, a.Value);
}
}
'C#(.NET)' 카테고리의 다른 글
[C#] 흐름제어 (switch, C# 7.0, when) (0) | 2020.06.12 |
---|---|
[C#] ?? Null 병합 연산자 (0) | 2020.06.12 |
[C#] 데이터 보관하기-2(최고 조상인 Object, 박싱, 언박싱, 형변환, var) (0) | 2020.06.12 |
[C#] 데이터 보관하기 (변수에 저장) (0) | 2020.06.12 |
[C#] Hello World 시작하는 코드 (1) | 2019.11.15 |