Answers for "test if two arrays contain the same values c#"

C#
11

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"");
}
Posted by: Guest on March-31-2020
3

c# how to check if two lists have same values

var list1 = new List<int> { 1, 2, 3, 1 };
var list2 = new List<int> { 2, 1, 3, 1 };
var list3 = new List<int> { 2, 2, 3, 2 };
bool areTheSame1 = list1.SequenceEqualsIgnoreOrder(list2); //True
bool areTheSame2 = list1.SequenceEqual(list2); //True
bool areTheSame3 = list1.SequenceEqual(list3); //False
Posted by: Guest on June-13-2020
0

see if two string arrays are equal c#

bool areEqual = a.SequenceEqual(b);
Posted by: Guest on June-15-2020

Code answers related to "test if two arrays contain the same values c#"

C# Answers by Framework

Browse Popular Code Answers by Language