Wie kann ich den folgenden Algorithmus in VB.NET codieren?Erstellen/Bearbeiten von Textdateien über VB.NET
Procedure logfile()
{
if "C:\textfile.txt"=exist then
open the textfile;
else
create the textfile;
end if
go to the end of the textfile;
write new line in the textfile;
save;
close;
}
sehr einfach und sauber –