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

            /* POTENTIAL FLAW: Set data to a value greater than the size of the array */
            data = 100;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE129_Improper_Validation_of_Array_Index__large_fixed_array_write_no_check_67b.GoodB2GSink(dataContainer);
        }
        /* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            int data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE129_Improper_Validation_of_Array_Index__large_fixed_array_write_no_check_67b.GoodG2BSink(dataContainer);
        }