Mono.Terminal.Application.Run C# (CSharp) Method

Run() public static method

Runs the main loop on the given container.
This method is used to start processing events for the main application, but it is also used to run modal dialog boxes.
public static Run ( Container container ) : void
container Container
return void
        public static void Run(Container container)
        {
            var runToken = Begin (container);
            RunLoop (runToken);
            End (runToken);
        }