Everything in on the title, is there a way to extract the list of jar classes (equivalent of jar tf) within C# ?
Thanks
Everything in on the title, is there a way to extract the list of jar classes (equivalent of jar tf) within C# ?
Thanks
AfaIk, jars are just ZIP-Files with a different extension. So any good ZIP libary should do the trick.
A quick google gave me sharpziplib and this code example on how to iterate through all files in a ZIP archive.