public UIntPtr FLDict_GetWithKeys(FLDict *dict, FLDictKey[] keys, FLValue[] values, UIntPtr count) => NativeRaw.FLDict_GetWithKeys(dict, keys, values, count);
Пример #2
0
 public static ulong FLDict_GetWithKeys(FLDict *dict, FLDictKey[] keys, FLValue[] values, ulong count)
 {
     return(NativeRaw.FLDict_GetWithKeys(dict, keys, values, (UIntPtr)count).ToUInt64());
 }
Пример #3
0
        public static ulong FLDict_GetWithKeys(FLDict *dict, FLDictKey[] keys, FLValue[] values)
        {
            var count = (UIntPtr)keys.Length;

            return(NativeRaw.FLDict_GetWithKeys(dict, keys, values, count).ToUInt64());
        }