vote up 2 vote down star
1

Possible Duplicate:
C# without .NET Framework

I am curious if there's any way to be able to write C# code without the power of .NET or Mono, such as something closer to a scripting environment for it?

flag

15  
You could write C# code all day long with just a pen and paper, if you were so inclined... Running or compiling is a different story :) – Mark Rushakoff Oct 27 at 0:48
Also, you can't buy a new Windows computer any more that doesn't have at least .Net 2.0 already installed. – Joel Coehoorn Oct 27 at 0:55
Oh puh-lease... That is so not a duplicate, that question was someone whinging about the JIT and native code as it pertains to the .NET framework, not "How can i write and compile the C# language without using .NET or Mono" – RCIX Oct 28 at 8:30

closed as exact duplicate by Marc Gravell Oct 27 at 4:53

7 Answers

vote up 4 vote down check

To my knowledge, Mono and .NET are the only two runtimes available. I think that the specifications for C# are open for anyone to read and if someone else wanted to implement a runtime, I don't see any reason why they couldn't.

link|flag
Thank you, you seem to be the only one who understands my actual question.... – RCIX Oct 27 at 0:58
There's also Silverlight and Moonlight ;-) And it's more than just C#, the Common Language Infrastructure (CLI) is an open specification, which includes the Common Type System (CTS) – Si Oct 27 at 1:02
vote up 3 vote down

You might want to have a look at Vala (http://live.gnome.org/Vala), a language that looks very similar to C#.

From the web site:

valac, the Vala compiler, is a self-hosting compiler that translates Vala source code into C source and header files. It uses the GObject type system to create classes and interfaces declared in the Vala source code.

The syntax of Vala is similar to C#, modified to better fit the GObject type system. Vala supports modern language features as the following:

* Interfaces
* Properties
* Signals
* Foreach
* Lambda expressions
* Type inference for local variables
* Generics
* Non-null types
* Assisted memory management
* Exception handling
* Type modules (Plugins)

Vala is designed to allow access to existing C libraries, especially GObject-based libraries, without the need for runtime bindings. All that is needed to use a library with Vala is an API file, containing the class and method declarations in Vala syntax. Vala currently comes with experimental bindings for GLib and GTK+. It's planned to provide generated bindings for the full GNOME Platform at a later stage.

link|flag
vote up 3 vote down

From the C# ECMA standard

Although Microsoft’s implementation of C# relies on CLI for library and runtime support, other implementations of C# need not, provided they support an alternate way of getting at the minimum CLI features required by this C# standard (see Annex D).

So in theory, yes, you could implement the C# standard without relying on the CLI. In practice, the C# standard and the CLI standard go hand in hand though. I don't know of any C# implementations which ignore the CLI.

link|flag
vote up 2 vote down

There are a few commercial products that let you run a .net application without the framework. Here are two:

Edit: Mono also has some useful resources for small footprint installs (this is the only open source implementation I know of):

link|flag
+1 for some good links, but (out of curiosity) where are the open-source alternatives? – Mark Rushakoff Oct 27 at 0:56
I didn't know about these! Do they have their own compilers too, or do they depend on Microsoft's/Mono's compiler? – FrustratedWithFormsDesigner Oct 27 at 0:59
vote up 1 vote down

There are scripting environments based on .NET - Powershell is one. It depends on and requires the .NET Framework, as would all similar tools.

link|flag
vote up 1 vote down

It's perhaps not exactly what you're after, but there is a scripting C# shell - mono's csharp interactive shell.

There's also the DotGNU runtime & compiler, but I wouldn't bother with it over mono.

link|flag
vote up -1 vote down

A good scripting style approach that uses C# is CS-SCript . However this still requires the .NET framework, it just let's you write C# without worrying about compiling it yourself. For example, it allows you to write a plain CS file containing C# code and then run it by simply double clicking on it in windows explorer. It still compiles it and uses the framework behind the scenes.

To write C# without the dependency on the framework at all, you would need a .NET linker. Microsoft do not provide one with .NET but there are a number of commercial options. Search for Remotesoft or Xenocode in google. Joel Spolsky wrote about the need for this a few years ago now.

In these days of Vista and Windows 7 where .NET 3+ is provided as part of the OS, its becoming more debatable as to the need for a linker for development.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.