/* 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;
     CWE190_Integer_Overflow__UInt64_max_multiply_68b.GoodG2BSink();
 }
 public override void Bad()
 {
     /* POTENTIAL FLAW: Use the maximum size of the data type */
     data = ulong.MaxValue;
     CWE190_Integer_Overflow__UInt64_max_multiply_68b.BadSink();
 }