Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,943 questions

51,884 answers

573 users

How to check the data type of a variable in VB.NET

1 Answer

0 votes
Imports System

Public Class VarType
    Public Shared Sub Main(ByVal args As String())
        Dim a As Integer = 242
        Console.WriteLine(a.GetType())
	
        Dim obj As Object = "C#"
        Dim objType As Type = obj.GetType()
	
        Console.WriteLine(objType)
        Dim b As Double = 383.023
        Console.WriteLine(b.GetType())

        Dim c As String = "abc"
        Console.WriteLine(c.GetType())

        Dim d As Boolean = False
        Console.WriteLine(d.GetType())

        Dim e As Char = "a"c
        Console.WriteLine(e.GetType())

        Dim f As UInteger = 8293481
        Console.WriteLine(f.GetType())
    End Sub
End Class



' run:
'
' System.Int32
' System.String
' System.Double
' System.String
' System.Boolean
' System.Char
' System.UInt32
'

 



answered Jul 7, 2024 by avibootz

Related questions

2 answers 160 views
1 answer 177 views
1 answer 196 views
1 answer 217 views
1 answer 193 views
1 answer 188 views
...