Example #1
0
        public string FromNativeReturn(string c_type, string val)
        {
            IGeneratable gen = this[c_type];

            if (gen == null)
            {
                return("");
            }
            return(gen.FromNativeReturn(val));
        }