How to get random file name in VB.NET

1 Answer

0 votes
Imports System
Imports System.IO

Public Class Program
    Public Shared Sub Main(ByVal args As String())
		Console.WriteLine(Path.GetRandomFileName())
    End Sub
End Class




' run:
'
' y1ji4kij.gmt
'

 



answered Nov 6, 2022 by avibootz
...