Open
Description
In...
...please consider replacing...
/// <summary>Returns the execution mode of the Lazy object</summary>
public LazyThreadSafetyMode? Mode => _lazy.Mode;
/// <summary>Returns the execution mode of the Lazy object</summary>
public bool IsValueFaulted => _lazy.IsValueFaulted;
...by...
/// <summary>Returns the execution mode of the Lazy object.</summary>
public LazyThreadSafetyMode? Mode => _lazy.Mode;
/// <summary>Returns whether the value creation of the Lazy object is faulted or not.</summary>
public bool IsValueFaulted => _lazy.IsValueFaulted;
Thanks!