Async property in c#
问题 In my windows 8 application there is a global class where there are a few static properties like: public class EnvironmentEx { public static User CurrentUser { get; set; } //and some other static properties //notice this one public static StorageFolder AppRootFolder { get { return KnownFolders.DocumentsLibrary .CreateFolderAsync("theApp", CreationCollisionOption.OpenIfExists) .GetResults(); } } } You can see I want to use the application root folder somewhere else in the project, so I make it