Are there any standalone (no installation) or no-admin installer compilers for C #

I'm going to spend a little of my lunch break every day teaching myself some C #. I have access to some books on the subject through my employer-paid subscription to Books24x7, but I have no way to run the code while I work.

My work computer is pretty locked down (no administrator privileges, read-only "Program Files" - although installation to a folder on the desktop is possible, and USB drives are not allowed ..) so I'm looking for another way to compile some code.

Can anyone point out: * A web compiler (a binary download from a reputed site, or perhaps a web CLI for interacting with non-GUI applications) * A standalone compiler that does not require installation * A compiler that does not require administrator rights for installation.

Thank!


[Edit 1]
I suppose another reason I mentioned the web compiler was because I'm not sure which versions of the .Net framework might be installed on my work machine. We are doing absolutely nothing .Net working on my project, so there is no reason to believe there is anything more than what XP has. If there is a way to install the latest version without admin privileges, I'd love to hear it!

0


source to share


2 answers


If the .NET Framework is installed on your computer, then you should already have a compiler.

He will be in C:\Windows\Microsoft.NET\Framework\[VERSION]\



It's called csc.exe

.

This should work without any admin privileges.

+4


source


There ideone.com .



It can compile and run on the server side of multiple languages, which usually require the language to be installed on the client PC. For me, I can write and run any application in C # without installing Visual Studio or the latest .NET Framework.

+1


source







All Articles