Ho questo array di stringhe:
string[] stringArray = { "text1", "text2", "text3", "text4" };
string value = "text3";
Vorrei determinare se stringArray
contiene value
. In tal caso, voglio individuare la sua posizione nella matrice.
Non voglio usare i loop. Qualcuno può suggerire come potrei farlo?