Method ArrayEquals
ArrayEquals<T>(T[], T[])
Indicates whether both arrays are the same or contains the same information.
This method is used to validate if the receipts are different.
Declaration
public static bool ArrayEquals<T>(T[] a, T[] b) where T : IEquatable<T>
Parameters
| Type | Name | Description |
|---|---|---|
| T[] | a | First object to validate against second object. |
| T[] | b | Second object to validate against first object. |
Returns
| Type | Description |
|---|---|
| bool | Returns true if they are the same length and contain the same information or else returns false. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of object to check. |