vote up 1 vote down star

I'm wondering if anyone can give me a good example of using pointers in C# in .Net and why you chose to use pointers?

flag

80% accept rate
What do you mean by "using pointers", are you trying to call some unmanaged code? – J.W. Apr 8 at 17:39
I'm just learning about pointers and wondering how they might apply to web development. Since I'm working in .Net, I thought I'd limit it to that. – madcolor Apr 8 at 17:44

3 Answers

vote up 5 vote down check

This isn't really a question to specific to ASP.NET.

If you are going to use pointers in .NET, the predominant reason is that you have an interop scenario where it is going to be easier to use pointers in unsafe code instead of IntPtr instances.

The second most popular (and distant) reason is because you might actually have a performance gain in processing large amounts of data in unsafe code than in managed code. Image processing algorithms are a good example of this.

link|flag
Would you say a web app like aviary.com/home might be an example where pointers would be used? – madcolor Apr 8 at 17:56
@madcolor: That's impossible to say. Generally speaking, any web server or framework can serve up HTML, you don't even know for sure that it's ASP.NET that's doing the work, although it is a very safe bet given the viewstate fields in the page. – casperOne Apr 8 at 17:59
@madcolor: That being said, I'd say that it's not done with pointers. Generally, you are better off letting .NET and ASP.NET do the memory management for you, since it's going to be better at it (typically). – casperOne Apr 8 at 18:00
Cool.. Good Info. – madcolor Apr 8 at 18:01
vote up 1 vote down

If you wanted to do some performant image processing for a web application, you might want to consider using pointers there. See Image Processing Basics in C# on codeproject.com.

link|flag
+1 - Since his name is "madcolor" I suspect this might be exactly what he needs it for! – John Rasch Apr 8 at 17:51
vote up 1 vote down

You only need to use pointers if you're using unmanaged code, or making pinvoke calls.

link|flag
Strictly speaking, working with most unmanaged code is possible without using unsafe C# at all (by using IntPtr) – Mehrdad Apr 8 at 17:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.