Mono.Terminal.Application.Run C# (CSharp) Метод

Run() публичный статический Метод

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
Результат void
        public static void Run(Container container)
        {
            var runToken = Begin (container);
            RunLoop (runToken);
            End (runToken);
        }