public static void RunTests_ByteImplicitCastToComplex()
        {
            VerifyByteImplicitCastToComplex(Byte.MinValue);
            VerifyByteImplicitCastToComplex(0);
            VerifyByteImplicitCastToComplex(1);

            for (int i = 0; i < Support.RandomSampleCount; ++i)
            {
                Byte randomValue = Support.GetRandomByteValue();
                VerifyByteImplicitCastToComplex(randomValue);
            }

            VerifyByteImplicitCastToComplex(Byte.MaxValue);
        }