『壹』 C#vs2005中如何調用其他應用程序,就是點擊窗體的按鈕,就實現運行d盤下的rose.exe文件。求高手了
private byte[] PrepareAttchment()
{
if (!string.IsNullOrEmpty(this.txtAttchment.Text))
{
FileStream fs = new FileStream(this.txtAttchment.Text.Trim(), FileMode.Open);
byte[] content = new byte[fs.Length];
fs.Read(content, 0, (int)fs.Length);
fs.Close();
return content;
}
return new byte[0];
}
然後調用這個方法就行了