Question:Which is the correct declaration for a nullable integer? - VB.NET
A Dim i As Nullable<Of Integer> = Nothing B Dim i As Nullable(Of Integer) = Nothing C Dim i As Integer = Nothing D Dim i As Integer(Nullable) = Nothing
+ AnswerB
+ Report