菜鸟问题
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 值和字符串以及 int 值,我得到的错误消息是
" 需要可转换为 'System.IO.Path' 的类型的对象"
我要传回的值将是我在该方法中使用的文件夹计数器。
我正在用不同的方法创建这个对象
ApplicationWorker filepath = new ApplicationWorker();
ApplicationWorker.filePath("backupNamevalue", "pathNamevalue", "specialLocationvalue");
谢谢