Creating a text file using VB.NET

Given a string, how can I generate a .txt file containing such a string?

+3
source share
1 answer

Use File.WriteAllText

File.WriteAllText(filePath, StringToWrite)
+9
source

All Articles