Unsafe Code : unsafe « unsafe « C# / CSharp Tutorial






  1. C# allows you to write "unsafe" code.
  2. Unsafe code does not execute under the full management of the Common Language Runtime (CLR).
  3. Unsafe code often involves the use of pointers.
  4. Pointers are a bit like references in C#.
  5. The main difference is that a pointer can point anywhere in memory
  6. A reference always points to an object of its type.
  7. To compile unmanaged code, you must use the /unsafe compiler option.








36.1.unsafe
36.1.1.Unsafe Code
36.1.2.Compile unsafe code
36.1.3.Using unsafe and fixed
36.1.4.Mark method as unsafe to pointers
36.1.5.Accessing Structure Members with a Pointer
36.1.6.Unsafe Methods
36.1.7.Using the unsafe keyword.
36.1.8.unsafe block