Method | Description | |
---|---|---|
AddHashCode ( int hash, int objHash ) : int | ||
AddHashCode ( int hash, object obj ) : int | ||
AreEqual ( IEnumerable enumerable, object obj ) : bool | ||
ComputeHashCode ( IEnumerable enumerable ) : int | ||
EnumValuesToString ( |
||
EnumValuesToString ( |
||
EnumValuesToString ( |
||
HaveSameContents ( IEnumerable left, IEnumerable right ) : bool | ||
ParseEnumValue ( |
||
ToString ( IEnumerable enumerable ) : string | ||
ToString ( IEnumerable enumerable, string delimiterText ) : string | ||
ToString ( IEnumerable enumerable, string startText, string endText, string delimiterText, string undefinedValueText ) : string |
conventiently concatenates the given items to a string for debugging purposes. the whole collection is embraced with square brackets and the individual items are separated by a comma. null items will be displayed as 'null' instead of the empty string. |
public static AddHashCode ( int hash, int objHash ) : int | ||
hash | int | |
objHash | int | |
return | int |
public static AddHashCode ( int hash, object obj ) : int | ||
hash | int | |
obj | object | |
return | int |
public static AreEqual ( IEnumerable enumerable, object obj ) : bool | ||
enumerable | IEnumerable | |
obj | object | |
return | bool |
public static ComputeHashCode ( IEnumerable enumerable ) : int | ||
enumerable | IEnumerable | |
return | int |
public static EnumValuesToString ( |
||
enumType | ||
return | string |
public static EnumValuesToString ( |
||
enumType | ||
delimiterText | string | |
return | string |
public static EnumValuesToString ( |
||
enumType | ||
startText | string | |
endText | string | |
delimiterText | string | |
return | string |
public static HaveSameContents ( IEnumerable left, IEnumerable right ) : bool | ||
left | IEnumerable | |
right | IEnumerable | |
return | bool |
public static ParseEnumValue ( |
||
enumType | ||
value | string | |
ignoreCase | bool | |
return | int |
public static ToString ( IEnumerable enumerable ) : string | ||
enumerable | IEnumerable | |
return | string |
public static ToString ( IEnumerable enumerable, string delimiterText ) : string | ||
enumerable | IEnumerable | |
delimiterText | string | |
return | string |
public static ToString ( IEnumerable enumerable, string startText, string endText, string delimiterText, string undefinedValueText ) : string | ||
enumerable | IEnumerable | the collection of items to print |
startText | string | the starting text |
endText | string | the ending textrint |
delimiterText | string | the item delimiter text |
undefinedValueText | string | text for undefined values |
return | string |