/* goodB2G() - use badsource and goodsink */
 private void GoodB2G()
 {
     int data;
     /* POTENTIAL FLAW: Use the maximum value for this type */
     data = int.MaxValue;
     CWE190_Integer_Overflow__int_max_square_53b.GoodB2GSink(data );
 }
 /* goodG2B() - use goodsource and badsink */
 private 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;
     CWE190_Integer_Overflow__int_max_square_53b.GoodG2BSink(data );
 }
 public override void Bad()
 {
     int data;
     /* POTENTIAL FLAW: Use the maximum value for this type */
     data = int.MaxValue;
     CWE190_Integer_Overflow__int_max_square_53b.BadSink(data );
 }