Example #1
0
        protected void FinalParseDataCompile()
        {
            if (listData == null)
            {
                return;
            }
            //result = ConvertIList(listData, resultType, memberType);
            object ilist = listData;

            if (!CodeConvert.TryConvertIList(ref ilist, resultType, memberType))
            {
                throw new Exception("convert failed");
            }
            result = ilist;
        }