/* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            string data;

            data = ""; /* Initialize data */
            /* Read data using an outbound tcp connection */
            {
                try
                {
                    /* Read data using an outbound tcp connection */
                    using (TcpClient tcpConn = new TcpClient("host.example.org", 39544))
                    {
                        /* read input from socket */
                        using (StreamReader sr = new StreamReader(tcpConn.GetStream()))
                        {
                            /* POTENTIAL FLAW: Read data using an outbound tcp connection */
                            data = sr.ReadLine();
                        }
                    }
                }
                catch (IOException exceptIO)
                {
                    IO.Logger.Log(NLog.LogLevel.Warn, exceptIO, "Error with stream reading");
                }
            }
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE94_Improper_Control_of_Generation_of_Code__Connect_tcp_66b.GoodB2GSink(dataArray);
        }
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            string data;

            /* FIX: Set data to an integer represented as a string */
            data = "10";
            string[] dataArray = new string[5];
            dataArray[2] = data;
            CWE94_Improper_Control_of_Generation_of_Code__Connect_tcp_66b.GoodG2BSink(dataArray);
        }