forked from aybe/Windows-API-Code-Pack-1.1
-
Notifications
You must be signed in to change notification settings - Fork 45
Open
Description
Hello, I encountered a memory overflow problem. Locate the following Demo:
Task.Run(async() => {
while (true)
{
try
{
using (IKnownFolder appsFolder = KnownFolderHelper.FromCanonicalName("AppsFolder"))
{
if (appsFolder == null) continue;
foreach (var item in appsFolder)
{
if (!item.Properties.DefaultPropertyCollection.Contains("System.Link.TargetParsingPath")) continue;
}
}
}
catch (Exception ex)
{
System.Diagnostics.Debug.WriteLine(ex);
}
await Task.Delay (1000);
}
});
I hope I can get your help!
I wish you a happy life!
Metadata
Metadata
Assignees
Labels
No labels