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