c# funtion to check array elements code example
Example 1: how to check if a value is inside an array c#
/*Make sure to add
using System.Linq;
*/
string[] printer = {"jupiter", "neptune", "pangea", "mercury", "sonic"};
if(printer.Contains("jupiter"))
{
Process.Start("BLAH BLAH CODE TO ADD PRINTER VIA WINDOWS EXEC"");
}
Example 2: how to know if an element is in an array c#
string[] names = "John", "Susan", "Sophie";
if (names.Contains("John") //Using Contains you can know if a specific value is on an array
{
Console.WriteLine("John is a name");
}