Misc syntax improvements

This commit is contained in:
Archi
2023-08-10 21:36:17 +02:00
parent 837e4bde8f
commit c84366f9ba
6 changed files with 13 additions and 4 deletions

View File

@@ -112,7 +112,7 @@ public static class Utilities {
public static void InBackground<T>(Func<T> function, bool longRunning = false) {
ArgumentNullException.ThrowIfNull(function);
InBackground(void() => function(), longRunning);
InBackground(void () => function(), longRunning);
}
[PublicAPI]