For example array a contains array b. This would return true:
int[] a = {1,2,3,4,5};
int[] b = {2,3,4};
This would be false:
int[] a = {1,2,4,5,6};
int[] b = {2,3,4};
preferably, I would like to do this without a loop since my arrays are very large and it takes too long.

New Topic/Question
Reply
MultiQuote















|