[C#]제네릭 프로그래밍

강서현·2022년 5월 2일
0

C#

목록 보기
11/23

일반화 메소드

int,double,string 배열의 내용을 출력하는 메소드
1. 메소드 중복을 사용
2. 일반화 메소드를 사용
void PrintArray(T[] a) {...};
T => Type을 의미
* 메소드 하나만 써도 처리 가능

List 컬렉션

  1. 선언 : List a = new List ();
  2. a.Add() , a.Sort(), a.RemoveAt(), a.Count 등 사용가능

배열과 List

  1. 생성
    		List<string>lstNames = new List<string>();
    		string[] arrNames = new string[10];
  2. 정렬
    		lstName.Sort();
    		Array.Sort(arrName);
profile
Recording...

0개의 댓글