初心者の質問
public static Path filePath(string backupName, string pathName, string specialLocation)
{
//finds a directory and counts how many folders are in it, output msgbox with value
return;
}
私の問題は戻り値です。何を返す必要がありますか? bool 値と string と int 値を使用してみましたが、エラーメッセージが表示されます
" 'System.IO.Path' に変換可能な型のオブジェクトが必要です"
戻したい値は、メソッドで使用したフォルダーカウンターです。
私は別のメソッドからこのオブジェクトを作成しています
ApplicationWorker filepath = new ApplicationWorker();
ApplicationWorker.filePath("backupNamevalue", "pathNamevalue", "specialLocationvalue");
ありがとう