C# compiler

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I want to ask how is licenced C# compiler that is distributed in free .NET Framework SDK. Can I distribute and sell programs compiled with this compiler? What about ASP.NET webs compiled with this compiler?

Thanks a lot,

Andy
 
yeap

--
Regards,

HD

Once a Geek.... Always a Geek
Andy said:
Hi all,

I want to ask how is licenced C# compiler that is distributed in free .NET
Framework SDK. Can I distribute and sell programs compiled with this
compiler? What about ASP.NET webs compiled with this compiler?
 
I want to ask how is licenced C# compiler that is distributed in free .NET
Framework SDK. Can I distribute and sell programs compiled with this
compiler?
Hi!

The only thing you pay for would be the Visual Studio Environment. Like with
Java the compiler is free and any programs can be compiled and sold (unlike
with the c++-compiler).
What about ASP.NET webs compiled with this compiler?

actually you can't precompile your webpages (except assemblies). On the
webserver the framework must be installed together with the compiler that
compiles the pages on demand.

matthias
 
Matthias said:
Framework SDK. Can I distribute and sell programs compiled with this
compiler?
Hi!

The only thing you pay for would be the Visual Studio Environment. Like with
Java the compiler is free and any programs can be compiled and sold (unlike
with the c++-compiler).




actually you can't precompile your webpages (except assemblies). On the
webserver the framework must be installed together with the compiler that
compiles the pages on demand.

The C# and VB.NET compilers get installed with the .NET Framework
Runtime automatically (to support dynamic code generation and compilation).
 
The .NET framework SDK is free and you are free to redistribute programs created using it.

Dolly
 
Back
Top