/* goodG2B() - use GoodSource and BadSink */
        private static void GoodG2B()
        {
            byte data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            Dictionary <int, byte> dataDictionary = new Dictionary <int, byte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE191_Integer_Underflow__Byte_min_multiply_74b.GoodG2BSink(dataDictionary);
        }
        /* goodB2G() - use BadSource and GoodSink */
        private static void GoodB2G()
        {
            byte data;

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = byte.MinValue;
            Dictionary <int, byte> dataDictionary = new Dictionary <int, byte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE191_Integer_Underflow__Byte_min_multiply_74b.GoodB2GSink(dataDictionary);
        }
        public override void Bad()
        {
            byte data;

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = byte.MinValue;
            Dictionary <int, byte> dataDictionary = new Dictionary <int, byte>();

            dataDictionary.Add(0, data);
            dataDictionary.Add(1, data);
            dataDictionary.Add(2, data);
            CWE191_Integer_Underflow__Byte_min_multiply_74b.BadSink(dataDictionary);
        }