public override void Bad()
        {
            sbyte data;

            /* POTENTIAL FLAW: Use the minimum size of the data type */
            data = sbyte.MinValue;
            Hashtable dataHashtable = new Hashtable(5);

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