CoreUtil.Event.WaitAll C# (CSharp) Method

WaitAll() public static method

public static WaitAll ( Array events ) : bool
events Array
return bool
		public static bool WaitAll(Event[] events)
		{
			return WaitAll(events, Infinite);
		}
		public static bool WaitAll(Event[] events, int millisecs)

Same methods

Event::WaitAll ( Array events, int millisecs ) : bool