我想要求用戶使用方法指定文件夾路徑並將其保存在數組中,然後允許稍後使用該數組。我遇到的問題是定義返回類型。我應該如何構建該方法?c#內部字符串數組方法
internal void selectFolderTxt(out string [] files)
{
FolderBrowserDialog fbd = new FolderBrowserDialog();
fbd.RootFolder = Environment.SpecialFolder.MyComputer;//This causes the folder to begin at the root folder or your documents
if (fbd.ShowDialog() == DialogResult.OK)
{
string[] files = Directory.GetFiles(fbd.SelectedPath, "*.txt", SearchOption.AllDirectories);//change this to specify file type
}
else
{
// prevents crash
}
}
P.S.我只是開始學習使用方法。
什麼是你需要的返回類型點很重要?只是在這裏替換==> 內部[ - > void < - ] selectFolderTxt( –