S
Sam
Sorry one of those "C" type transistion questions which I
could find no answer for in existing C# text books.
In C, I used to use the system function call to execute
programs synchronously.
To clear the screen, for console based programs, I used
to include the following statement in my program.
system("cls"); // For DOS/windows based programs
system("clear"); // for UNIX based programs
So does anyone know :
1. The .NET library equivalent to the old system function
call.
2. How to clear the screen for console based programs.
Thanks
could find no answer for in existing C# text books.
In C, I used to use the system function call to execute
programs synchronously.
To clear the screen, for console based programs, I used
to include the following statement in my program.
system("cls"); // For DOS/windows based programs
system("clear"); // for UNIX based programs
So does anyone know :
1. The .NET library equivalent to the old system function
call.
2. How to clear the screen for console based programs.
Thanks