Reply to thread

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.




[code]

FileStream file = new FileStream("test1234.txt", FileMode.OpenOrCreate, FileAccess.Write);

StreamWriter sw = new StreamWriter(file);

sw.WriteLine("test");

sw.Close();

file.Close();

[/code]



I generate a complete script with the tutorial but now i dont know how to continue


Top Bottom