Going through the code for Schedule.Static, realize it's really inefficient with lots of redundant function calls. Function calls are pretty expensive in C# last I tested, so it would be nice if we could roll a lot of the code into a single function with no extra calls. Please make sure to benchmark to make sure that it's actually faster. I haven't done any real testing with it, but I imagine it can be improved quite a lot. If you want me to assign you to this, please make sure that you're willing and able to write some benchmarks!
Going through the code for
Schedule.Static
, realize it's really inefficient with lots of redundant function calls. Function calls are pretty expensive in C# last I tested, so it would be nice if we could roll a lot of the code into a single function with no extra calls. Please make sure to benchmark to make sure that it's actually faster. I haven't done any real testing with it, but I imagine it can be improved quite a lot. If you want me to assign you to this, please make sure that you're willing and able to write some benchmarks!