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