Tagged Questions

6
votes
9answers
1k 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, why must a compiler ...
1
vote
2answers
495 views

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

As you know, /GS are Visual C++ Compiler or Linker Options. Can i Specify /GS in c# compiler or linker? Are these flags enabled by default in c# applications? [Edit]: change the question ...
0
votes
1answer
102 views

C# CodeDom Multiple CompilerOptions

I would like to add multiple CompilerOptions with CodeDom, but I cannot figure out how to do so. What I am currently trying: CompilerParameters cp = new CompilerParameters(referencedAssemblies, ...