Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.com
- using System;
- public class Usofixed
- {
- int campo;
- public static void Main()
- {
- Console.WriteLine(Environment.NewLine);
- Usofixed u = new Usofixed();
- // Región de código inseguro:
- unsafe
- {
- // Obtención de puntero a partir de un tipo por valor,
- // y marca región de memoria inamovible:
- fixed (int* puntero = &u.campo)
- {
- *puntero = 9;
- }
- Console.WriteLine(u.campo);
- }
- Console.WriteLine(Environment.NewLine);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement