I am trying to get one line of code working in a Windows 10 UWP.
private static async Task MakeFile()
{
var file = await
Windows.Storage.ApplicationData.Current.TemporaryFolder.CreateFileAsync("bob", CreationCollisionOption.GenerateUniqueName);
}
For some reason When I try to run this the whole app freezes and never comes back