Anyway To Code C# in Eclipse? [duplicate] - c#

This question already has answers here:
C# plugin for Eclipse
(4 answers)
Closed 8 years ago.
So right now I use Visual Studio for my C# programming, however I was wondering if there is a way to switch to Eclipse. The only reason I want to (and this may seem like a silly reason to switch...) is because I like the look of the Console in Eclipse, and the way the output text looks.
If there is anyway to run a C# program in Eclipse, or get the output console that Eclipse has, please let me know.
Thanks

I believe your question has already been answered in this thread on stackoverflow
How to use eclipse for C# development?
I'm pretty certain eclipse is only for java and c++, and as far as I know the only IDE for c# is visual studios.
I also like the console in eclipse!

You can work with c# in eclipse with thrid party plugins. But i as understand eclipse is more used for Java, C/C++ and not for c#.

Related

Is it possible to run a python file from within Visual Studio? [duplicate]

This question already has answers here:
How do I run a Python script from C#?
(9 answers)
Closed 7 years ago.
I am completely new to Visual Studio and C#, so I apologize in advance if this sounds like a dumb question. I am trying to develop a Windows Forms Application such that when I click a button, a Python script is run, performing data analysis on some files, with the eventual goal of displaying that data as a graph on the Windows Forms Application after the button is clicked.
My question is: how do I get the python script to run when the button is clicked from the Windows Forms Application?
Yes, it is possible.
You can create a process that runs python shell.
Pyton Tools for Visual Studio will help with debugging python from within VS
https://pytools.codeplex.com/
For more details and how to look at this video
http://www.youtube.com/watch?v=JNNAOypc6Ek&hd=1
Yes, it is possible there is Microsoft approved extension for VS to yse Python.
You can downloaded it from here:
https://visualstudiogallery.msdn.microsoft.com/9ea113de-a009-46cd-99f5-65ef0595f937
For more details and how to look at this video
http://www.youtube.com/watch?v=JNNAOypc6Ek&hd=1

XNA alternative [duplicate]

This question already has answers here:
Alternative to Microsoft XNA Game Studio? [closed]
(2 answers)
Closed 9 years ago.
I recently switched to VS2012, managed to get XNA4 project working, but then I was wondering if VS2012 no longer supports (so really) and XNA seems to be such abandoned stuff, if there is an alternative to use, that is like:
vs2012 compatible, and net4.5, c#
not too high level (or well written and optimized)
easy to learn after XNA
free
Priorities are from above.
You could look into monogame
http://www.monogame.net/
It's based on Mono so it's easier to port across from Desktop/Windows Phone like XNA would allow to also compile for Android and iOS (you need to buy a licence for those as they use Monodroid and monotouch components which aren't free)
I heard good things about Monogame and SlimDX. But Monogame is probably what you are looking for.

C# and .NET frameworki a [duplicate]

This question already has answers here:
How do I move from Java to C#?
(9 answers)
Closed 5 years ago.
I am going to start work with a company that works on a .NET framework and i am a professional java developer and i think i should switch to .NET because i cant see any bright future with java anymore.
My questions:
Now i have decided to move to .NET, what things i should learn as a total beginner. Should i learn C# or i should understand basics of .NET first?? as i know only that .Net is a framework and c# is one of language run on it. I am only interested in C# as it like java not in VB or any other.
please tell me what i am suppose to learn and please refer to me some books.
thanks
You are correct in your understanding that .Net is the underlying portable framework which is supported via multiple languages such as C#,VB etc. If you are looking for a Java equivalent in terms of programming language then C# is exactly what you want to be working with.
One of the best books for C# out there is C# via CLR that teaches you C# with an understanding of the underlying CLR. It is more of an intermediate-advanced proficiency book but the basics should be easy to latch on to given your Java background.

Visual Studio 2010 C# one-liners compiler [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Anders Hejlsberg's C# 4.0 REPL
Is there a native window/extension in VS2010 where you can write one-liners and see the result( like the 'Immediate Window', witch, as far as I know, is only usable in Debug mode).
I'm not interested in external tools like Linq Pad or SnippetCompiler
With Roslyn, Visual Studio will get a built in interactive window:
http://blog.filipekberg.se/2011/11/14/using-the-c-interactive-window-that-comes-with-roslyn/
Unfortunately, it is still only at CTP status.
Maybe the IronPython interactive console (inside visual studio) could do the work. But it's not a straight answer :/
http://ironpython.net/

Is it possible to develop an Android application with C#? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Will Google Android ever support .NET?
Is there a way to develop C#/.NET on Android devices?
I don't have an experience with mobile applications and as a .Net developer I would like to ask if it is possible to develop Android applications with C#?
If yes, does this mean I can use Visual Studio for this purpose?
Yes, there is a commercial framework called MonoDroid created for this purpose. It appears to support Visual Studio 2010.
The iOS alternative, MonoTouch, is restricted to Mac usage I believe.
To be honest, it looks like it has recently been farmed off to another supplier and the prices have jumped... I'd be hesitant before buying in and I'd likely try and learn Java/Objective-C instead - unless I knew I was going to make squillions!

Categories