I have an array of strings: for example:
string [] names ={"P","A","B","G","F","K","R"}
I have another array:
string [] subnames={"P","G","O"}
How to check if an array of names has any elements of an array of subtasks.
In the above example, "P" and "G" are in the names.
source share