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

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

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

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = ushort.MaxValue;
            Hashtable dataHashtable = new Hashtable(5);

            dataHashtable.Add(0, data);
            dataHashtable.Add(1, data);
            dataHashtable.Add(2, data);
            CWE190_Integer_Overflow__UInt16_max_multiply_72b.GoodB2GSink(dataHashtable);
        }
        public override void Bad()
        {
            ushort data;

            /* POTENTIAL FLAW: Use the maximum size of the data type */
            data = ushort.MaxValue;
            Hashtable dataHashtable = new Hashtable(5);

            dataHashtable.Add(0, data);
            dataHashtable.Add(1, data);
            dataHashtable.Add(2, data);
            CWE190_Integer_Overflow__UInt16_max_multiply_72b.BadSink(dataHashtable);
        }