C# – buffashe's Blog https://blog.buffashe.com/ 버프애쉬의 블로그 Thu, 30 Jul 2020 05:22:53 +0000 ko-KR hourly 1 https://wordpress.org/?v=5.6 C# ArrayList 클래스 https://blog.buffashe.com/2019/06/csharp-arraylist-class/ Thu, 20 Jun 2019 06:08:56 +0000 https://blog.buffashe.com/?p=44 요소 삽입 요소 접근 요소 Count

The post C# ArrayList 클래스 appeared first on buffashe's Blog.

]]>
// 네임스페이스 선언 using System.Collections; ArrayList a1 = new ArrayList();



요소 삽입

// 마지막 인덱스
a1.Add("Element");



요소 접근

// 0번 인덱스
Console.WriteLine(a1[0]);



요소 Count

Console.WriteLine(a1.Count);

The post C# ArrayList 클래스 appeared first on buffashe's Blog.

]]>