8 references to ThreeState
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (8)
src\Compilers\Core\Portable\InternalUtilities\ThreeState.cs (8)
21
public static
ThreeState
ToThreeState(this bool value)
23
return value ?
ThreeState
.True :
ThreeState
.False;
26
public static bool HasValue(this
ThreeState
value)
28
return value !=
ThreeState
.Unknown;
31
public static bool Value(this
ThreeState
value)
33
Debug.Assert(value !=
ThreeState
.Unknown);
34
return value ==
ThreeState
.True;