c# without .net?

  • Thread starter Thread starter Voltaic
  • Start date Start date
V

Voltaic

i need to create an app for Windows PE which runs with a minimal subset of
windows dlls. is it possible to code an app in c# that uses only core
windows dll files, or are c# and .net so inextricably tied that anything
you make w/ c# will require a laundry list of non-coming-with-windows dll
files?

if they are so codependent how would one go about accomplishing such a
task??

thanks!
Sam
 
Voltaic said:
i need to create an app for Windows PE which runs with a minimal subset of
windows dlls. is it possible to code an app in c# that uses only core
windows dll files, or are c# and .net so inextricably tied that anything
you make w/ c# will require a laundry list of non-coming-with-windows dll
files?

if they are so codependent how would one go about accomplishing such a
task??

thanks!
Sam

C# rides on top of the .Net framework (as to all the other .Net languages).
Any resulting .Net compiled executable requires the .Net framework.

If you don't want the .Net baggage, use a non-.Net language such as C/C++.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top