Tagged Questions

11
votes
3answers
401 views

Why does this code work without the unsafe keyword?

In an answer to his own controversial question, Mash has illustrated that you don't need the "unsafe" keyword to read and write directly to the bytes of any .NET object instance. Y …
7
votes
3answers
181 views

What are the implications of using unsafe code

Aside from the fact that the code itself can access memory directly. What are the other implications of using the "/unsafe" compiler flag and the "fixed" keyword? Are there any kno …
7
votes
9answers
3k views

Which is faster - C# unsafe code or raw C++

I'm writing an image processing program to perform real time processing of video frames. It's in C# using the Emgu.CV library (C#) that wraps the OpenCV library dll (unmanaged C++) …
7
votes
5answers
550 views

Fixed Statement in C#

We have similar code to the following in one of our projects. Can anyone explain (in simple English) why the fixed statement is needed here? class TestClass { int iMyVariab …
6
votes
11answers
978 views

Should you use pointers (unsafe code) in C#?

Should you use pointers in your C# code? What are the benefits? Is it recommend by The Man (Microsoft)?
5
votes
3answers
324 views

Faster (unsafe) BinaryReader in .NET

I came across a situation where I have a pretty big file that I need to read binary data from. Consequently, I realized that the default BinaryReader implementation in .NET is pre …
5
votes
9answers
513 views

C#: Benefit of explicitly stating “unsafe” / compiler option

I understand pointers and the rare need to use them in C# code. My question is: what is the reasoning behind having to explicitly state "unsafe" in a block of code. Additionally, w …
4
votes
7answers
1k views

C# Unsafe/Fixed Code

Can someone give an example of a good time to actually use "unsafe" and "fixed" in C# code? I've played with it before, but never actually found a good use for it. Consider this …
3
votes
7answers
335 views

Are ref and out in C# the same a pointers in C++?

I just made a Swap routine in C# like this: static void Swap(ref int x, ref int y) { int temp = x; x = y; y = temp; } It does the same thing that this C++ code does: …
3
votes
1answer
182 views

What is the difference between Fixed and Unsafe.

Why are there 2 different ways lock memory in place in .NET? What is the difference between them?
2
votes
5answers
162 views

C#: Using pointer types as fields?

In C#, it's possible to declare a struct (or class) that has a pointer type member, like this: unsafe struct Node { public Node* NextNode; } Is it ever safe (err.. ignore for …
2
votes
2answers
90 views

Does “fixed” really guarantee anything when passing pointers (ie int[]) to DLLs?

I tried searching for this but haven't found anything, however when passing an int[] into a native DLL function as a pointer, isn't there still the danger that the DLL could mainta …
2
votes
2answers
253 views

How to convert fixed byte/char[100] to managed char[] in C#?

What's the best way to convert a fixed byte or char[100] to a managed char[] in C#? I ended up having to use pointer arithmetic and I'm wondering if there is an easier way -- somet …
2
votes
3answers
669 views

C#: convert generic pointer to array

I want to convert a byte* to a byte[], but I also want to have a reusable function to do this: public unsafe static T[] Create<T>(T* ptr, int length) { T[] array = new T …
2
votes
2answers
563 views

c#: generically convert unmanaged array to managed list

I am dealing with a set of native functions that return data through dynamically-allocated arrays. The functions take a reference pointer as input, then point it to the resulting …

1 2 3 next
15 30 50 per page