C# 클래스 SupportClass.ArraysSupport, csharp-ldap

This class manages array operations.
파일 보기 프로젝트 열기: EventStore/csharp-ldap

공개 메소드들

메소드 설명
FillArray ( System array, System val ) : void

Fills the array with an specific value.

FillArray ( System array, System fromindex, System toindex, System val ) : void

Fills the array with an specific value from an specific index to an specific index.

IsArrayEqual ( System array1, System array2 ) : bool

Compares the entire members of one array whith the other one.

Two arrays are equal if they contains the same elements in the same order.

메소드 상세

FillArray() 공개 정적인 메소드

Fills the array with an specific value.
public static FillArray ( System array, System val ) : void
array System The array to be filled.
val System The value to fill the array with.
리턴 void

FillArray() 공개 정적인 메소드

Fills the array with an specific value from an specific index to an specific index.
public static FillArray ( System array, System fromindex, System toindex, System val ) : void
array System The array to be filled.
fromindex System The first index to be filled.
toindex System The last index to be filled.
val System The value to fill the array with.
리턴 void

IsArrayEqual() 공개 정적인 메소드

Compares the entire members of one array whith the other one.
Two arrays are equal if they contains the same elements in the same order.
public static IsArrayEqual ( System array1, System array2 ) : bool
array1 System The array to be compared.
array2 System The array to be compared with.
리턴 bool