7b87f0cc创建于 2023年8月3日历史提交
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;
	}
}