Inheritance
AutomatedQaTools
public static class AutomatedQaTools : object
Methods
Declaration
public static bool Any<T>(this T[] list, Func<T, bool> predicate)
Parameters
| Type |
Name |
Description |
| T[] |
list |
|
| Func<T, Boolean> |
predicate |
|
Returns
Type Parameters
Declaration
public static T First<T>(this T[] array)
Parameters
| Type |
Name |
Description |
| T[] |
array |
|
Returns
Type Parameters
Declaration
public static T First<T>(this List<T> list)
Parameters
| Type |
Name |
Description |
| List<T> |
list |
|
Returns
Type Parameters
Declaration
public static T Last<T>(this T[] array)
Parameters
| Type |
Name |
Description |
| T[] |
array |
|
Returns
Type Parameters
Declaration
public static T Last<T>(this List<T> list)
Parameters
| Type |
Name |
Description |
| List<T> |
list |
|
Returns
Type Parameters
Declaration
public static List<X> Select<X, T>(this T[] list, Func<T, X> predicate)
Parameters
| Type |
Name |
Description |
| T[] |
list |
|
| Func<T, X> |
predicate |
|
Returns
Type Parameters
Declaration
public static List<X> Select<X, T>(this List<T> list, Func<T, X> predicate)
Parameters
| Type |
Name |
Description |
| List<T> |
list |
|
| Func<T, X> |
predicate |
|
Returns
Type Parameters
Declaration
public static bool SequenceEqual<T>(this List<T> list, List<T> otherList)
Parameters
| Type |
Name |
Description |
| List<T> |
list |
|
| List<T> |
otherList |
|
Returns
Type Parameters
Declaration
public static List<T> ToList<T>(this T[] array)
Parameters
| Type |
Name |
Description |
| T[] |
array |
|
Returns
Type Parameters
Declaration
public static List<T> ToList<T>(this IEnumerable<T> enumerable)
Parameters
| Type |
Name |
Description |
| IEnumerable<T> |
enumerable |
|
Returns
Type Parameters