public static class Test { public const byte[3] Foo = { 5, 10, 200 }; public static bool Run() { int sum = 0; for (int i = 0; i < Foo.Length; i++) sum += Foo[i]; return sum == 215; } }