How to compare 2 Lists in aspose word

How to compare 2 Lists in aspose word?

@vineeth.pv You can get the desired List from the document

Document doc = new Document(@"C:\Docs\TestDoc.docx");
List list1 = doc.Lists["ListName1"];
List list2 = doc.Lists["ListName2"];

And then compare their attributes.