On the MSDN documentation for Lazy.Force<T>
extension method says:
Forces the execution of this value and returns its result. Same as Value. Mutual exclusion is used to prevent other threads from also computing the value.
Does it mean that it's equivalent to creating a Lazy<T>
instance with ExecutionAndPublication
LazyThreadSafetyMode so that only one thread can initialize the instance?
Thanks
It's a bit strange that the method exists and is not a function - it's not composable and replicates the behavior of .Value
.
I would define something like the following (as seen in the F# compiler):
module Lazy =
// Lazy.force : Lazy<'T> -> 'T
let force (x: Lazy<'T>) = x.Force()
Yes. They are both the same, and both make sure that the value will be computed only once.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With