/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            string data;

            /* FIX: Use a hardcoded string */
            data = "foo";
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE15_External_Control_of_System_or_Configuration_Setting__ReadLine_67b.GoodG2BSink(dataContainer);
        }
        public override void Bad()
        {
            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");
                }
            }
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE15_External_Control_of_System_or_Configuration_Setting__ReadLine_67b.BadSink(dataContainer);
        }