Fees to distribute a C# EXE?

  • Thread starter Thread starter Guy Harel
  • Start date Start date
G

Guy Harel

I have come accross a posting saying that if you plan to develop an
application, with the C# language, and want to sell it as a product,
your customer will have to pay a fee for having the run-time
environment on their PC. Is that true? Cant the run-time environment
be bundle with the EXE? Should I consider using MFC C++ then?
 
Guy Harel said:
I have come accross a posting saying that if you plan to develop an
application, with the C# language, and want to sell it as a product,
your customer will have to pay a fee for having the run-time
environment on their PC. Is that true?

The "fee" is payable in megabytes.
 
The .NET framework is freely available from Microsoft. The SDK is free. The
development tools cost money but there are no runtime license fees to pay.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Image transition effects, snap-to-grid and Layered Windows are
all discussed in May's edition of Well Formed for C# or VB programmers
http://www.bobpowell.net/currentissue.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/gdiplus_faq.htm

The GDI+ FAQ RSS feed: http://www.bobpowell.net/faqfeed.xml
Windows Forms Tips and Tricks RSS: http://www.bobpowell.net/tipstricks.xml
Bob's Blog: http://bobpowelldotnet.blogspot.com/atom.xml
 
No...

The runtime (.NET Framework) is built into Windows 2003.

For Windows 98, ME, 2000, and XP, it is a free download from Microsoft and
you can also bundle it with your distributable code. This is easy to do
with the setup project generator, and it guarantees that the user gets the
exact same version that you developed with.

No fees.
 
Back
Top