mirror of
https://github.com/DCFApixels/DragonECS-ClassicThreads.git
synced 2025-09-19 04:24:34 +08:00
13 lines
346 B
C#
13 lines
346 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
public static class EcsThrowHalper_ClassicThreads
|
|||
|
{
|
|||
|
internal static void DoubleParallelIteration(this EcsThrowHalper _)
|
|||
|
{
|
|||
|
throw new InvalidOperationException("It is forbidden to start a parallel iteration before the last one is finished.");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|