/* goodG2B() - use goodsource and badsink */
 private void GoodG2B()
 {
     string data;
     /* FIX: Use a hardcoded int as a string */
     data = "5";
     CWE606_Unchecked_Loop_Condition__ReadLine_52b.GoodG2BSink(data );
 }
 /* goodB2G() - use badsource and goodsink */
 private void GoodB2G()
 {
     string data;
     data = ""; /* Initialize data */
     {
         /* read user input from console with ReadLine */
         try
         {
             /* POTENTIAL FLAW: Read data from the console using ReadLine */
             data = Console.ReadLine();
         }
         catch (IOException exceptIO)
         {
             IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
         }
     }
     CWE606_Unchecked_Loop_Condition__ReadLine_52b.GoodB2GSink(data );
 }