Class ArrayHelper
Inheritance
System.Object
ArrayHelper
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:EvilDICOM.Core.Helpers
Assembly:EvilDICOM.dll
Syntax
public class ArrayHelper
Methods
View SourceAreEqual<T>(T[], T[])
A method that compares each object in two arrays to see if the arrays are equal
Declaration
public static bool AreEqual<T>(T[] array1, T[] array2)
Parameters
| Type | Name | Description |
|---|---|---|
| T[] | array1 | the first array to be compared |
| T[] | array2 | the second array to be compared |
Returns
| Type | Description |
|---|---|
| System.Boolean |
Type Parameters
| Name | Description |
|---|---|
| T | the class type of the array |
Pop<T>(T[])
Declaration
public static T[] Pop<T>(T[] toPop)
Parameters
| Type | Name | Description |
|---|---|---|
| T[] | toPop |
Returns
| Type | Description |
|---|---|
| T[] |
Type Parameters
| Name | Description |
|---|---|
| T |