C# 클래스 zxingwp7.common.Collections

This is basically a substitute for java.util.System.Collections, which is not present in MIDP 2.0 / CLDC 1.1.

파일 보기 프로젝트 열기: henningms/zxing2.0-wp7

공개 메소드들

메소드 설명
insertionSort ( List vector, Comparator comparator ) : void

Sorts its argument (destructively) using insert sort; in the context of this package insertion sort is simple and efficient given its relatively small inputs.

비공개 메소드들

메소드 설명
Collections ( ) : System

메소드 상세

insertionSort() 공개 정적인 메소드

Sorts its argument (destructively) using insert sort; in the context of this package insertion sort is simple and efficient given its relatively small inputs.
public static insertionSort ( List vector, Comparator comparator ) : void
vector List vector to sort ///
comparator Comparator comparator to define sort ordering ///
리턴 void