C# equivalent of the /fx C++ compiler option

  • Thread starter Thread starter Paul Selormey
  • Start date Start date
P

Paul Selormey

Hello All,
Is there any equivalent to the /fx C++ compiler option
for C#?

Best regards,
Pau.
 
/Fx produces a copy of each source file with injected code merged into the
source.

If you are taking about the spelling, I mean /Fx.

Best regards,
Paul.
 
Hello

AFAIK the C# compiler doesn't perform an code injection. When there are
custom attributes, the C# compiler serializes them and store them in the
assemblies metadata.

Best regards,
Sherif
 
Back
Top