using System.Collections.Generic;
public static void Main()
byte[] a = new byte[] { 223, 13, 32, 121, 151, 1 };
byte[] b = new byte[] { 223, 12, 32, 121, 111, 1 };
var bobHatesVar = GetDifferenceIndexes(a, b);
Console.WriteLine(bobHatesVar);
private static IEnumerable<int> GetDifferenceIndexes(byte[] a, byte[] b)
throw new NotImplementedException("ah!");