-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Open
Labels
area-System.RuntimedocumentationDocumentation bug or enhancement, does not impact product or test codeDocumentation bug or enhancement, does not impact product or test codehelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributors
Milestone
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!
Metadata
Metadata
Assignees
Labels
area-System.RuntimedocumentationDocumentation bug or enhancement, does not impact product or test codeDocumentation bug or enhancement, does not impact product or test codehelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributors