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?
|
1
|
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?
|
||||||||
|
closed as exact duplicate by Marc Gravell♦ Oct 27 at 4:53 |
|
|
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. |
||||
|
|
|
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:
|
||
|
|
|
|
From the C# ECMA standard
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. |
|||
|
|
|
|
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): |
||||
|
|
|
There are scripting environments based on .NET - Powershell is one. It depends on and requires the .NET Framework, as would all similar tools. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|