我可能會用這種完全錯誤的方式,但我試圖用一種名爲Load的方法將繼承列表中的內容寫入文本文件。如何將內容從繼承列表寫入文本文件?
public class Appointments : List<Appointment>
有沒有問題,在這裏,但是當我嘗試從列表中每個項目寫入的代碼的文本文件:
public bool Load(string fileName)
{
TextWriter tw = new StreamWriter("Appointment.txtr");
foreach (string s in List<Appointment>)
{
tw.WriteLine(s + "\n");
}
}
我得到的錯誤"List<Appointment>" is a type which is not valid in the given context.
任何想法我如何解決這個問題?或者有人有另一種方式來做我想要達到的目標。
感謝您的閱讀!
Load()方法在Appointments類中聲明? –
'在這個字符串'? –
儘管我可以看到你沒有從字符串繼承...... – Alex