C# memory management: unsafe keyword and pointers
Posted
by Alerty
on Stack Overflow
See other posts from Stack Overflow
or by Alerty
Published on 2010-03-22T22:30:58Z
Indexed on
2010/03/22
22:51 UTC
Read the original article
Hit count: 587
What are the consequences (positive/negative) of using the unsafe keyword in C# to use pointers? For example, what becomes of garbage collection, what are the performance gains/losses, what are the performance gains/losses compared to other languages manual memory management, what are the dangers, in which situation is it really justifiable to make use of this language feature... ?
© Stack Overflow or respective owner