コード例 #1
0
        static void Main(string[] args)
        {
            AppRedux.Init();

            AppRedux.Dispatch <Prompts.Actions.PromptUser>();

            Console.ReadKey();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: ninjah187/nintek-redux
        static async Task MainAsync()
        {
            AppRedux.Init();

            await AppRedux.DispatchAsync <Store.Prompt.Actions.Display, string>("Fetch data from URL:");

            Console.ReadKey();
        }