Answers for "c# contains on array of integers"

C#
0

c# check if array contains value

public static bool Contains(Array a, object val)
    {
        return Array.IndexOf(a, val) != -1;
    }
Posted by: Guest on November-10-2020
0

how to check if an integer is in array c#

//Add necessary namespace
using System.Linq;
//Example
string[] printer = {"jupiter", "neptune", "pangea", "mercury", "sonic"};
//using .Contains() method
if(printer.Contains("jupiter"))
{
    Process.Start("BLAH BLAH CODE TO ADD PRINTER VIA WINDOWS EXEC"");
}
Posted by: Guest on March-01-2020

Code answers related to "c# contains on array of integers"

C# Answers by Framework

Browse Popular Code Answers by Language