Set RecurringJob to start running at a specified future time

Can I schedule a recurring job that will start running at a time I specified? For example,

BackgroundJob.Schedule(() =>
                        RecurringJob.AddOrUpdate("job_1",() => Console.WriteLine("hellow world"), "0 6 * * *", null, "default"),
                        TimeSpan.FromDays(10));

I am seeing the job showing as “Can not find the target method.” Just wondering if it is possible to schedule a cron job that can start in the future, and run daily after that.