static int Free(MemoryRegionCache cache) { if (cache is null) { return(0); } return(cache.Free()); }
static int Free(MemoryRegionCache cache) => cache?.Free() ?? 0;