Cann't Remove Hyperlink from PDF in C#

I want to to Remove Hyperlink from PDF using Aspose.PDF 24.4, But it doesn’t work.

Sampe Code

void Main()
{
	InitCoreComponent();
	var doc = new Aspose.Pdf.Document(@"C:\Users\54390\Downloads\removePDFLink\input.pdf");

	var page = doc.Pages[1];
	Console.WriteLine(page.Annotations.Count);
	page.Annotations.ToList().ForEach(annotation =>
				{
					if (annotation.AnnotationType == Aspose.Pdf.Annotations.AnnotationType.Link)
					{
						page.Annotations.Delete(annotation);
					}
				});

	doc.Save(@"C:\Users\54390\Downloads\removePDFLink\output.pdf");

}

Demo fIle

removePDFLink.zip (1.9 MB)

@sullivan
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PDFNET-57143

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.