Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Alguien que pueda ayudar, programo en visual studio 2008 en entorno WINDOWS 7
use monodevelop... creo que existe un programa que convierte de la misma forma que lo hace VB.Net to CSharp.Converter

Someone who can help, program in visual studio 2008 in WINDOWS environment
use monodevelop... believe that there is a program that converts in the same way that makes it VB.NET.to.C.sharp.Converter)
Posted
Updated 25-Mar-12 11:08am
v2

1 solution

You can do it by using Mono:
http://en.wikipedia.org/wiki/Mono_%28software%29[^],
http://www.mono-project.com/Main_Page[^].

You don't have to develop on Mono (but you can if you want, using Mono itself with MonoDevelop, http://en.wikipedia.org/wiki/MonoDevelop[^], http://monodevelop.com/[^]). You can use just .NET on Windows. You won't need to convert anything.

Mono is a good CLR implementation. It supports all standard .NET libraries and a good number of non-standard ones, including System.Windows.Forms (unfortunately, not WPF) and ADO.NET you would need to work with database systems.

If the application is developed using .NET accurately enough, it will run on Linux and other platforms without recompilation. Many my applications work like that, even with Forms, ADO.NET and other things.

[EDIT]

All fragments of code incompatible with Mono or non-multiplatform ones could be found automatically using a special utility called MoMA — Mono Migration Analyzer. Please see:
http://www.mono-project.com/MoMA[^].

—SA
 
Share this answer
 
v5
Comments
Emanuel vargas 26-Mar-12 16:11pm    
How to I can implement my solution made in.NET as I can run it on LINUX
(If the application is developed using .NET accurately enough, it will run on Linux and other platforms without recompilation. Many my applications work like that, even with Forms, ADO.NET and other things.)
Sergey Alexandrovich Kryukov 27-Mar-12 23:19pm    
This is what it is. It should not contain platform-dependent features or those incompatible with Mono. You can use all standard libraries (they are standardized under ECMA) and many non-standard ones (available in .NET in fact, but not included in standards) listed in Mono documentation.

You can list all incompatibilities with MoMa. Please see updated answer, after [EDIT].

I think your question is answered in full now. Will you consider accepting it formally (green button)? -- thanks.
--SA

--SA
lukeer 28-Mar-12 2:21am    
I read his question as "How can I open a Visual Studio project under MonoDevelop?"
Sergey Alexandrovich Kryukov 28-Mar-12 11:36am    
I don't think so. It says: "my solution made in .NET".
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900