Skip to content

Commit 1029325

Browse files
CopilotBillWagner
andauthored
Fix DBNull description: missing value vs. nonexistent column (#51951)
* Initial plan * Fix DBNull description: "missing value in a database column" not "nonexistent database column" Co-authored-by: BillWagner <493969+BillWagner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: BillWagner <493969+BillWagner@users.noreply.github.com>
1 parent 7608f23 commit 1029325

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/visual-basic/language-reference/nothing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If you declare a variable without using an `As` clause and set it to `Nothing`,
4545

4646
When you assign `Nothing` to an object variable, it no longer refers to any object instance. If the variable had previously referred to an instance, setting it to `Nothing` does not terminate the instance itself. The instance is terminated, and the memory and system resources associated with it are released, only after the garbage collector (GC) detects that there are no active references remaining.
4747

48-
`Nothing` differs from the <xref:System.DBNull> object, which represents an uninitialized variant or a nonexistent database column.
48+
`Nothing` differs from the <xref:System.DBNull> object, which represents an uninitialized variant or a missing value in a database column.
4949

5050
## See also
5151

0 commit comments

Comments
 (0)