ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • C#
    Data/Container 2013. 10. 31. 00:26

    System.Collections.ArrayList -> IEnumerable

    c.f. StringBuilder

    .Count


    .ToArray()

    .Sort()

    .Reverse()


    .[]()

    범위를 벗어나면 예외가 발생한다

    .Add()

    .Insert()

    System.Collections.Hashtable

    맵 또는 사전

    c.f. System.Object.GetHashCode()


    .[]()

    키가 이미 존재하면 값을 변경하며 새로운 키일 때는 삽입한다

    .Add()

    System.Collections.Stack

    .Push()

    .Pop()

    System.Collections.Queue

    .Enqueue()

    .Dequeue()


    *

    System.Collections.Generic.List<> -> System.Collections.Generic.IEnumerable<>

    .Add()


Designed by Tistory.