Ejemplo n.º 1
0
 public static GcMode WithConcurrent(this GcMode mode, bool value) => mode.With(mode.Concurrent.Mutate(value));
Ejemplo n.º 2
0
 public static GcMode WithServer(this GcMode mode, bool value) => mode.With(mode.Server.Mutate(value));
Ejemplo n.º 3
0
 public static GcMode WithForce(this GcMode mode, bool value) => mode.With(mode.Force.Mutate(value));
Ejemplo n.º 4
0
 public static GcMode WithAllowVeryLargeObjects(this GcMode mode, bool value) => mode.With(mode.AllowVeryLargeObjects.Mutate(value));
Ejemplo n.º 5
0
 public static GcMode WithCpuGroups(this GcMode mode, bool value) => mode.With(mode.CpuGroups.Mutate(value));