StarryEyes.Views.Dialogs.WorkingWindow.WorkingWindow C# (CSharp) Method

WorkingWindow() public method

public WorkingWindow ( string description, Func work ) : System
description string
work Func
return System
        public WorkingWindow(string description, Func<Task> work)
            : this(description, _ => work())
        {

        }

Same methods

WorkingWindow::WorkingWindow ( string description, Func work ) : System