Example #1
0
        public static string ToString(cef_string_userfree* str)
        {
            if (str != null)
            {
                var result = cef_string_t.ToString((cef_string_t*)str);
                libcef.string_userfree_free(str);
                return result;
            }

            return null;
        }
Example #2
0
 public static extern void string_userfree_free(cef_string_userfree* str);