What does Visual J# .NET have to do with my C# Application?

D

DaBrain

I have written an application in C#, when I created a setup project
and tried to install it on another test machine it said:

"This setup requires the Microsoft Visual J# .NET Redistributable
package version 2.xxx"

Is this normal? Or did i screw up my setup project?

Any help would be greatly appreciated

DB
 
S

sherifffruitfly

I have written an application in C#, when I created a setup project
and tried to install it on another test machine it said:

"This setup requires the Microsoft Visual J# .NET Redistributable
package version 2.xxx"

Is this normal? Or did i screw up my setup project?

Any help would be greatly appreciated

DB


J# has zip/unzip built-in, which no other .net language does (in
vjslib.dll assempbly). Could that be it?
 
C

Chris Nahr

J# has zip/unzip built-in, which no other .net language does (in
vjslib.dll assempbly). Could that be it?

Seriously? So apparently J# has a use after all... or its library, at
least. Why didn't Microsoft move that functionality into the main
..NET Framework?
 
J

Jon Skeet [C# MVP]

Chris Nahr said:
Seriously? So apparently J# has a use after all... or its library, at
least. Why didn't Microsoft move that functionality into the main
.NET Framework?

They're doing so, gradually. .NET 2.0 has basic gzip functionality, but
that's about it.

I guess there wasn't enough time to redesign the Java libraries to fit
in with .NET idioms before 1.0, and after that third party libraries
(notably SharpZipLib) took the pressure off a bit. Personally I hope
that if MS *does* provide a full-blown implementation at some point,
they design it a bit better than the Java version, which works well
enough but isn't terribly nicely designed.
 
G

Guest

J# is gone in the next version of Visual Studio, so I'm sure that this
functionality will be present in the framework then.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C#/VB to C++ converter
Instant Python: C#/VB to Python converter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top