¿Cómo se codifica el algoritmo que se muestra a continuación en VB.NET?Creación/edición de archivos de texto a través de 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;
}
muy simple y limpio –