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 ...