Ejemplo n.º 1
0
        private static unsafe ItemsSafeHandle ParseQuery(out CInterpMorf *items, out int itemsCount, string query)
        {
            ItemsSafeHandle itemsHandle;

            if (!ParseQuery(out itemsHandle, out items, out itemsCount, query))
            {
                throw new InvalidOperationException();
            }
            return(itemsHandle);
        }
Ejemplo n.º 2
0
 private static unsafe extern bool ParseQuery(out ItemsSafeHandle itemsHandle,
                                              out CInterpMorf *items, out int itemCount, [MarshalAs(UnmanagedType.LPStr)] string query);