VB.Net/Database ADO.net/Database NULL — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 16:40, 26 мая 2010

System Null and DB NUll

Public Class MainClass
   Public Shared Sub Main()
       "Strings
        Dim strConstant As String = "ABC"
        Dim strRepeat As New String("A"c, 20)
        Dim strMyString As String = "Hello World"

       strMyString = Nothing
        Dim sysNull As System.DBNull
        If strMyString Is sysNull Then
            strMyString = "Initialize my String"
        End If
        If Not IsDBNull(strMyString) Then
            Console.WriteLine(strMyString)
        End If
        
   End Sub
End Class