i want to check if a string array includes a string more than one time.
for example
string[] array = new string[]{"A1","A2","A3"};
string item = "A1";
look for item in array, include item just once return false
string[] array = new string[]{"A1","A2","A3","A1"};
string item = "A1";
return true
Any insight would be greatly appreciated.