How to declare datatype in vb.net

How to declare string?
dim str as string
How to declare DataTable?
Dim dt As New DataTable
How to declare Integer?
Dim i As New Integer
How to declare DDecimal?
Dim j As New Decimal
How to declare DataSet?
Dim ds As New DataSet
How to declare Boolean?
Dim flag As Boolean = True

No comments: