how to write a variable of pointer type in c# -


i new c# . have knowledge in c, in c can declare variable pointer type through able access variable address &variable name , how can use concept in c#.

can me out solve problem ?

in c# pointers allowed in unsafe context.

you may took here : https://msdn.microsoft.com/en-us/library/y31yhkeb.aspx

you should avoid unsafe context if possible.


Comments