/* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
     data = 2;
     CWE191_Integer_Underflow__UInt16_min_sub_68b.GoodG2BSink();
 }
 /* goodB2G() - use badsource and goodsink */
 private static void GoodB2G()
 {
     /* POTENTIAL FLAW: Use the minimum size of the data type */
     data = ushort.MinValue;
     CWE191_Integer_Underflow__UInt16_min_sub_68b.GoodB2GSink();
 }
 public override void Bad()
 {
     /* POTENTIAL FLAW: Use the minimum size of the data type */
     data = ushort.MinValue;
     CWE191_Integer_Underflow__UInt16_min_sub_68b.BadSink();
 }