Mono.Terminal.Application.Run C# (CSharp) Méthode

Run() public static méthode

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
Résultat void
        public static void Run(Container container)
        {
            var runToken = Begin (container);
            RunLoop (runToken);
            End (runToken);
        }