コード例 #1
0
ファイル: cef_string_userfree.cs プロジェクト: rajsite/lvcef
        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;
        }
コード例 #2
0
ファイル: libcef.string.cs プロジェクト: rajsite/lvcef
 public static extern void string_userfree_free(cef_string_userfree* str);