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

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

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

            /* POTENTIAL FLAW: Set data to a random value */
            data = (new Random()).Next();
            Dictionary <int, int> dataDictionary = new Dictionary <int, int>();

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

            /* POTENTIAL FLAW: Set data to a random value */
            data = (new Random()).Next();
            Dictionary <int, int> dataDictionary = new Dictionary <int, int>();

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