public void Init()
        {
            intParseMethod  = new ParseMethod <int>(int.Parse);
            intParseWrapper = new ParseMethodWrapper <int>(intParseMethod);

            intValues = new int[] { -4, 78900, 0, 555 };
            string[] intsAsStrs = Array.ConvertAll(intValues,
                                                   new Converter <int, string>(Convert.ToString));
            intValuesAsStr = string.Join(" ", intsAsStrs);
        }
        public void Init()
        {
            intParseMethod = new ParseMethod<int>(int.Parse);
            intParseWrapper = new ParseMethodWrapper<int>(intParseMethod);

            intValues = new int[] { -4, 78900, 0, 555 };
            string[] intsAsStrs = Array.ConvertAll(intValues,
                                                   new Converter<int, string>(Convert.ToString));
            intValuesAsStr = string.Join(" ", intsAsStrs);
        }