I was using java.util.zip for extracting zip files in c# visual studio 2005 project,
but when I upgraded the project to visual studio 2010 it doesn’t compile anymore and throwing following error
"The type or namespace name 'java' could not be found (are you missing a using directive or an assembly reference?)"
Is java or java.util is missing in visual studio 2010? What should I do to add this in my project?
J# was discontinued in VS 2008. You’ll need to install the J# 2.0 Redistributable package (linked from the same page) and add an appropriate reference in your C# project.
Alternatively, you could use SharpZipLib or another third party library.