我加的help.txt文件中的資源爲文本文件,並沒有這樣的:如何用記事本打開嵌入的字符串資源?
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(myProject.Properties.Resources.help);
}
它沒有工作,那麼我想是這樣的:
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(@"help.txt");
}
纔沒有也行,但這樣一來它的工作原理:
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(@"C:\Projects\CourceWork\Resources\help.txt");
}
的問題是,我不希望處理定義的路徑這種硬核,我該怎麼辦?