BudgetAnalyser.Uwp.ShellController.CreateNewDefaultApplicationState C# (CSharp) 메소드

CreateNewDefaultApplicationState() 개인적인 정적인 메소드

private static CreateNewDefaultApplicationState ( ) : IList
리턴 IList
        private static IList<IPersistentApplicationStateObject> CreateNewDefaultApplicationState()
        {
            // Widget persistent state object is required to draw the widgets, even the ones that should be there by default.
            // The widgets must be drawn so a user can open or create a new file. 
            var appState = new List<IPersistentApplicationStateObject>
            {
                new WidgetsApplicationState()
            };
            return appState;
        }
    }