check if a value is the last in array C# code example
Example: 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"");
}