4 references to Nullable
Microsoft.CodeAnalysis.Workspaces (1)
CodeRefactorings\CodeRefactoringContext.cs (1)
113
internal void RegisterRefactoring(CodeAction action, TextSpan applicableToSpan) => RegisterRefactoring(action, new
Nullable
<TextSpan>(applicableToSpan));
PresentationCore (1)
System\Windows\Media\Effects\Effect.cs (1)
119
return worldBounds.IsEmpty ? null : new
Nullable
<Point>(UnitToWorldUnsafe(unitPoint, worldBounds));
PresentationFramework (1)
System\Windows\Controls\Primitives\ToggleButton.cs (1)
138
return new
Nullable
<bool>((bool)value);
System.Data.Common (1)
System\Data\DataRowExtensions.cs (1)
205
=> value == DBNull.Value ? default : new
Nullable
<TElem>((TElem)value);