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

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