クラスList<string>
でファイルに書き込もうとしています。StreamWriter
(デバッグモードで)引数をwrite_lines()
関数に渡すと、プログラムはエラーなしで停止します。多分誰かが私が間違っていることの手がかりを持っています
public class Writer
{
private StreamWriter the_writer;
private string PS_filepath;
public Writer()
{
}
public void write_lines(List<string> thelines, string path)
{
this.PS_filepath = path;
this.the_writer = new StreamWriter(PS_filepath, true);
foreach(string line in thelines)
{
the_writer.WriteLine(line);
}
}
}
Path var is C:\path\text.xyz