/* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            byte data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = byte.MaxValue;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE190_Integer_Overflow__Byte_max_multiply_67b.GoodB2GSink(dataContainer);
        }