Reflection question

  • Thread starter Thread starter Sunil
  • Start date Start date
S

Sunil

Hi there...

I am using reflection to do a runtime compilation of a
type defined at runtime....

Question : Do I need c sharp compiler in the machine
together with .net framework for this to work? Or Will
this work if I only have the .net framework in the target
machine?

Thanks in advance
Sunil
 
Hi there...

I am using reflection to do a runtime compilation of a
type defined at runtime....

Question : Do I need c sharp compiler in the machine
together with .net framework for this to work? Or Will
this work if I only have the .net framework in the target
machine?

Thanks in advance
Sunil

If you use reflection you don'T need a C# Compiler or the Framework SDK at
runtime. Reflection works on intermediate language level. But you will need
the .net Framework Runtime to be able to run the code.

--
------ooo---OOO---ooo------

Peter Koen - www.kema.at
MCAD CAI/RS CASE/RS IAT

------ooo---OOO---ooo------
 
Sunil said:
I am using reflection to do a runtime compilation of a
type defined at runtime....

Question : Do I need c sharp compiler in the machine
together with .net framework for this to work? Or Will
this work if I only have the .net framework in the target
machine?

The C# compiler is part of the .NET framework, so you shouldn't need to
add anything else.
 
Back
Top