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

            /* FIX: Set data to an integer represented as a string */
            data = "10";
            LinkedList <string> dataLinkedList = new LinkedList <string>();

            dataLinkedList.AddLast(data);
            dataLinkedList.AddLast(data);
            dataLinkedList.AddLast(data);
            CWE94_Improper_Control_of_Generation_of_Code__ReadLine_73b.GoodG2BSink(dataLinkedList);
        }
        /* goodB2G() - use BadSource and GoodSink */
        private static 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");
                }
            }
            LinkedList <string> dataLinkedList = new LinkedList <string>();

            dataLinkedList.AddLast(data);
            dataLinkedList.AddLast(data);
            dataLinkedList.AddLast(data);
            CWE94_Improper_Control_of_Generation_of_Code__ReadLine_73b.GoodB2GSink(dataLinkedList);
        }