-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathHelper.cs
58 lines (51 loc) · 1.64 KB
/
Helper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Pn532
{
internal static class Helper
{
/// <summary>
/// Compare the elements of 2 different byte arrays
/// </summary>
/// <param name="first">First array to compare</param>
/// <param name="second">Second array to compare</param>
/// <returns>True if all elements are equa</returns>
public static bool SequenceEqual(this byte[] first, byte[] second)
{
if (first.Length != second.Length)
{
return false;
}
for (int i = 0; i < first.Length; i++)
{
if (first[i] != second[i])
{
return false;
}
}
return true;
}
/// <summary>
/// Compare the elements of 2 different byte arrays
/// </summary>
/// <param name="first">First array to compare</param>
/// <param name="second">Second array to compare</param>
/// <returns>True if all elements are equa</returns>
public static bool SequenceEqual(this SpanByte first, SpanByte second)
{
if (first.Length != second.Length)
{
return false;
}
for (int i = 0; i < first.Length; i++)
{
if (first[i] != second[i])
{
return false;
}
}
return true;
}
}
}