Tagged Questions

0
votes
2answers
41 views

[c#]How to specify /GS, /DynamicBase options to c# application?

As you know, /analyze /GS /DynamicBase /SafeSEH are Visual C++ Compiler or Linker Options. Can i Specify /analyze /GS /DynamicBase /SafeSEH in c# compiler or linker? Are these …
2
votes
3answers
178 views

When should I use GCC’s -pipe option?

The GCC 4.1.2 documentation has this to say about the -pipe option: -pipe Use pipes rather than temporary files for communication between the various stages of compilation …
5
votes
9answers
513 views

C#: Benefit of explicitly stating “unsafe” / compiler option

I understand pointers and the rare need to use them in C# code. My question is: what is the reasoning behind having to explicitly state "unsafe" in a block of code. Additionally, w …