ALE.Promise.To C# (CSharp) Method

To() public static method

public static To ( Action act ) : Promise
act Action
return Promise
        public static Promise To(Action<Deferrer> act)
        {
            return new Promise(act);
        }