Answers for "if contains c# array"

C#
3

c# string array contains

string[] array = { "cat", "dog", "perl" };

// Use Array.Exists in different ways.
bool a = Array.Exists(array, element => element == "perl");
bool c = Array.Exists(array, element => element.StartsWith("d"));
bool d = Array.Exists(array, element => element.StartsWith("x"));
Posted by: Guest on March-25-2021

Code answers related to "if contains c# array"

C# Answers by Framework

Browse Popular Code Answers by Language