Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Quartz.NET 似乎我需要命名我创建的每个作业。有没有办法可以自动“命名”,比如自动递增 ID 或其他什么?
Guid.NewGuid().ToString()为什么在创建工作时不使用 a ?这就是我过去所做的,而且效果很好
Guid.NewGuid().ToString()
我建议您在创建作业时只传递类型名称。如 myObject.GetType().Name。