Guest User

Untitled

a guest
Jun 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $ cat foo.cs
  2. public class MainC {
  3. public static void Main() {
  4. string st = "foo";
  5. unsafe { fixed (char *s = st) { *s = 'g'; } }
  6. System.Console.WriteLine(st);
  7. }
  8. }
  9. $ gmcs /unsafe foo.cs
  10. $ mono --security=verifiable foo.exe
  11. goo
  12. $
Add Comment
Please, Sign In to add comment