Catrobat.IDE.WindowsShared.Utilities.BAutoResetEvent.BAutoResetEvent C# (CSharp) Method

BAutoResetEvent() public method

public BAutoResetEvent ( bool initialState ) : System
initialState bool
return System
        public BAutoResetEvent(bool initialState)
        {
            _are = new AutoResetEvent(initialState);
        }