is there anybody out there
who can explain me, where i have to put my c# script in my plugin-file so that this routine will work the whole time an writes this code into the text file.
I generate a complete script with the tutorial but now i dont know how to continue
who can explain me, where i have to put my c# script in my plugin-file so that this routine will work the whole time an writes this code into the text file.
Code:
FileStream file = new FileStream("test1234.txt", FileMode.OpenOrCreate, FileAccess.Write);
StreamWriter sw = new StreamWriter(file);
sw.WriteLine("test");
sw.Close();
file.Close();
I generate a complete script with the tutorial but now i dont know how to continue