Section 20.6: 배열 요소의 값을 얻어오거나 할당하기

int[] arr = new int[] { 0, 10, 20, 30}; // 값 얻어오기 Console.WriteLine(arr[2]); // 20 // 값 할당하기 arr[2] = 100; // 갱신된 값 얻어오기 Console.WriteLine(arr[2]); // 100
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/CSharpBook/

반응형

+ Recent posts