What I would like to know how to do is convert an int array to an int in C #.
However, I want to add int with values from the array.
Example:
int[] array = {5, 6, 2, 4};
Will be converted to int equal to 5624.
Thanks for any help in advance.
source
share