What is unsafe code (code using pointers) in c#?
196511-Jan-2016
I'm interested how to use of unsafe code options in C#? And when? Please give me appropriate answer. Thank you to all in advance.
Updated on 12-Jan-2016
Home / DeveloperSection / Forums / What is unsafe code (code using pointers) in c#?
Anupam Mishra
12-Jan-2016The unsafe code or the unmanaged code is a code block that uses a pointer variable. A pointer is a variable whose value is the address of another variable i.e., the direct address of the memory location. Similar to any variable or constant, you must declare a pointer before you can use it to store any variable address.
If you are using Visual Studio IDE then you need to enable use of unsafe code in the project properties.
To do this:
· Open project properties by double clicking the properties node in the Solution Explorer.
· Click on the Build tab.
· Select the option "Allow unsafe code".
For example,
Output:
Similar way, you can write more program related to unsafe code .