不知怎的,我的一個類中的構造函數沒有找到參數... 有沒有人遇到過這個問題?建築找不到?
這裏是我的代碼,我如何我稱之爲:
MoveFiles類:
class MoveFiles
{
#region Variables
//Variables
public string strSrcPath, strDstPath, strFdrName, strNewDestFldrPath = "";
Main frm = new Main();
#endregion
#region Constructor
//Constructor - accepts the path and store the value
private void MoveFiles(string strSourcePath, string strDestPath, string strFldrName)
{
strSrcPath = strSourcePath;
strDstPath = strDestPath;
strFdrName = strFldrName;
}
#endregion
ETC....
那麼這裏就是我稱之爲:
//move the files based on the source path, destination path, and folder name
MoveFiles moveFile = new MoveFiles(strSrcPath, strDestPath, strFoldrName);
moveFile.StartMove();
我在那裏的地方我調用它給了我一個錯誤,構造函數不帶三個參數....
你有這樣的問題,你是如何解決它的? 還是我只是瞎了,有沒有真的在那裏?
構造函數不應該有返回類型,並且如果你想從另一個類中調用它,它不得爲'private'。 – birryree
您是否使用Visual Studio?我希望你的代碼有多少錯誤/警告,除了你試圖調用它的代碼外,還有什麼問題 – musefan