比方說,我用的是工廠的設計和有接口: public interface IEvent {
void doSomething (String a);
}
而實現類 public class EventA implements IEvent{
@Override
void doSomething(String a) { ... }
}
public class EventB impl
我正在使用.txt文件將數據保存到Windows窗體應用程序中。 .txt位於與.exe相同的文件夾中。但是,如果我通過快捷方式啓動應用程序(假設是桌面快捷方式),則應用程序會將.txt文件保存在桌面中(即使實際的.exe位於其他位置)。我使用的代碼是: var myFile = File.Create(@"data.txt");
using (var sw = new StreamWriter