C#
[ C# ] 컬렉션 ArrayList, List, Hashtable, Dictionary, Queue, Stack
ArrayList arrayList = new ArrayList(); 원소 자료형에 제약이 없습니다. 때문에 연산량이 List보다 많습니다. arrayList.Add(원소); 원소를 추가한다 arrayList.Remove(특정 원소); 특정 원소를 지운다 arrayList.RemoveAt(인덱스); 해당 인덱스의 원소를 지운다 arrayList.RemoveRange(시작 인덱스, 마지막 인덱스); 시작 인덱스~마지막 인덱스까지의 원소를 지운다 arrayList.Clear(); ArrayList를 초기화 한다 arrayList.Contains(특정 원소); ArrayList에 특정 원소가 있는지 true, false로 반환한다 arrayList.Insert(인덱스, 원소); 해당 인덱스에 원소를 끼워넣는다..
[ C# ] C# 기본 용어
ꕥ 프로그래밍을 하다 보면 여러 가지 용어들이 굉장히 헷갈리는데요! 오늘 쉽게 구분해보도록 하겠습니다~ ꕥ 표현식 : 값을 만들어 내는 간단한 코드 255 10 + 20 + 30 * 4 "Hello C# Basic Terms" 문장 : 표현식의 모임, 마지막에는 종결의 의미로 세미콜론(;) 추가 255; 10 + 20 + 30 * 4; var name = "암" + "양" Console.Write("Hello C# Basic Terms"); 키워드 : C#언어의 규격에 미리 정의되어 있는 특별한 의미가 부여된 단어 일반 키워드 abstract as base bool break byte case catch char checked class const continue decimal default delega..