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,894 questions

51,825 answers

573 users

How to generate a random hexadecimal string in VB.NET

1 Answer

0 votes
Imports System

Class RandomHexGenerator
    Private Shared Function GenerateHex(ByVal length As Integer) As String
        Const hexChars As String = "0123456789ABCDEF"
        Dim rand As Random = New Random()
        Dim hexArray As Char() = New Char(length - 1) {}

        For i As Integer = 0 To length - 1
            Dim index As Integer = rand.Next(16)
            hexArray(i) = hexChars(index)
        Next

        Return New String(hexArray)
    End Function

    Public Shared Sub Main()
        Dim length As Integer = 8
        Dim hexNumber As String = GenerateHex(length)

        Console.WriteLine("Random Hexadecimal Number: " & hexNumber)
    End Sub
End Class



' run:
'
' Random Hexadecimal Number: 9D481802
'

 



answered Sep 18, 2025 by avibootz

Related questions

...