Running Java code in C# [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am writing a silverlight application using c#. For the project I need to be able to compile and download a program to an external drive. I have the code to do this however it is written in Java.
The code is extensive and would take an excessive amount of time to translate all of it into c#. Is there an alternate way to translate the code into c# or is there a way to run java code within a c# project?

You could always compile it as an executable and run it with Process.Start.

You can use IKVM.net to convert the jar to a dll

In google you can find a online service for it or change same code witch doesn't work

Related

Build Windows software with JQuery [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there a way to make windows standalone program which will have JQuery powering its UI?
Since it will be a file manager, I would need to be able to access local files and folders so using HTML5+CSS+JQuery in browser is not possible due to limitation of access to local file system.
I would be most comfortable using c# and VS2008 environment if possible. Any ideas?
You can use jQuery in HTA applets.
You can give a try to javaFX if you are ready to give a try to java. A sample DatePicker for JavaFX using jQuery UI can be found here DatePicker

File upload utility [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm trying to implement a basic file, image upload utility into a small, simple (built using the Visual Web Developer tutorial) C# MVC3 ASP.Net web site. I have see this utility pointed out here on StackOverFlow a few times:
https://github.com/blueimp/jQuery-File-Upload
...but unsure if I can just slot it into my MVC3 C# Website? (I am very new to attempting to learn MVC3 with C#).
I also see lots of this guides floated around the place:
http://aspzone.com/tech/jquery-file-upload-in-asp-net-mvc-without-using-flash
http://davidsonsousa.net/en/post/how-to-upload-a-file-using-mvc-3-and-ajax
http://tomas.epineer.se/archives/3
Can any of these simply be slotted into my website?
Appreciate any help
Yes. The first two seem to fit perfectly.

git from a C# application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Currently writing a C# application it should do backups using GIT in the background.
I'm looking for projects or examples to do that without showing any GUI or bash shell..
When searching cross by GitSharp - https://github.com/henon/GitSharp.
It seems close to what I've looked for yet it isn't active.. (see the pull req')
Would like to get recommendations for open source projects or source code to do that.
libgit2sharp are C# bindings for libgit2, which the official GitHub for Windows client uses. They should be decent.
Try ngit, it have better codebase but no decent docs

How to implement something like "Fences" [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am fascinated by the program "Fences"
How can I implement something which resides on the desktop like it does?
you can move around the fences and they are persistent.
image i.i.com.com/cnwk.1d/i/tim//2009/10/05/Foreman_11108546_4825_fences_210x158.jpg http://i.i.com.com/cnwk.1d/i/tim//2009/10/05/Foreman_11108546_4825_fences_210x158.jpg
My guess is that it has been implemented using a dot net language. Can this be done in C# ?
It's possible that Fences is written in a .NET langage, but it's more likely to be written in C++. A program like this requires very tight integration with the Win32 API - which can be done from .NET, but is easier with C/C++.
Shell extensions required to be coded using a language tied to the Win32 API.
The 'appearance customization window' might be coded using .Net, but the core program is probably C++.

C++ Armadillo code in C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like to use Armadillo in a C# application, Anyone had any experience using armadillo in C#, I am not familiar with C#.
I know armadillo has a .dll, is there anyway to import this dll in c#...
Armadillo is heavily based on templates, so you won't be able to use it with C# without overwhelming work.
If you have to use LAPACK, BLAS or Eispack with C# you can use DotNumerics
DotNumerics is a Numerical Library for .NET. The library is written in pure C# and has more than 100,000 lines of code with the most advanced algorithms for Linear Algebra, Differential Equations and Optimization problems. The Linear Algebra library includes CSLapack, CSBlas and CSEispack, these libraries are the translation from Fortran to C# of LAPACK, BLAS and EISPACK, respectively.

Categories