Tagged Questions
In c# unsafe keyword marks code able to work directly with the memory pointers, bypassing .NET's safety checks.
37
votes
10answers
3k views
Interesting uses of sun.misc.Unsafe
Of course the Unsafe class is undocumented, but I am interested in hearing of some situations where you used the Unsafe class to your advantage.
22
votes
5answers
459 views
Why doesn't *(int*)0=0 cause an access violation?
For educational purposes, I'm writing a set of methods that cause runtime exceptions in C# to understand what all the exceptions are and what causes them. Right now, I'm tinkering with programs that ...
19
votes
4answers
2k views
C# memory management: unsafe keyword and pointers
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 ...
15
votes
3answers
824 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. You can declare the ...
12
votes
3answers
2k 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 pretty slow. Upon ...
11
votes
1answer
148 views
Why does this unsafe code throw a NullReferenceException?
I was playing with unsafe code for a problem on Code Golf, and I found something I can't explain. This code:
unsafe
{
int i = *(int*)0;
}
Crashes with an access violation (Segfault), but this ...
11
votes
3answers
670 views
Unsafe C# trick to improve speed
I am not used to code with pointers (e.g. C++), nor with unsafe islands: only "safe" C#.
Now I'd like to implement a function in C# for the .Net Micro Framework, where the compactness and the ...
10
votes
2answers
176 views
Is GC.KeepAlive required here, or can I rely on locals and arguments keeping an object alive?
I have a bunch of methods that take the WPF's WriteableBitmap and read from its BackBuffer directly, using unsafe code.
It's not entirely clear whether I should use GC.KeepAlive whenever I do ...
10
votes
3answers
539 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 knock on effects ...
9
votes
4answers
191 views
Simple algorithm to crop empty borders from an image by code?
Currently I'm seeking for a rather fast and reasonably accurate algorithm in C#/.NET to do these steps in code:
Load an image into memory.
Starting from the color at position (0,0), find the ...
9
votes
1answer
271 views
Can I override object with sun.misc.Unsafe?
Can I override one obejct with another if they are instance of same class, their size is the same, using sun.misc.Unsafe?
edit:
By "override" I mean to "delete" first object, ant to fill the memory ...
9
votes
4answers
369 views
Unsafe code in C#
What are the limitations of unsafe code, in C#? For example, can I do virtually arbitrary pointer casts and arithmetic as if I were using C or C++?
9
votes
11answers
3k 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)?
9
votes
9answers
6k 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++). Now I have to ...
8
votes
2answers
371 views
Does unsafe code have any effect on safe code?
As I understand it, marking an method as unsafe will disable some of the clr checks on that code, but does this have any effect on the rest of the system which is safe, other than the fact that the ...
8
votes
4answers
660 views
When to use pointers in C#/.NET?
I know C# gives the programmer the ability to access, use pointers in an unsafe context. But When is this needed?
At what circumstances, using pointers becomes inevitable?
Is it only for performance ...
8
votes
5answers
985 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 iMyVariable;
static void ...
7
votes
2answers
117 views
Why does this addition of byte* and uint fail to carry into the higher dword?
Now filed on Microsoft Connect; please upvote if you feel it needs fixing. I've also simplified the test case a lot:
byte* data = (byte*) 0x76543210;
uint offset = 0x80000000;
byte* wrong = data + ...
7
votes
4answers
644 views
C# creating buffer overflow
I'm trying to create a buffer overflow with C# for a school project:
unsafe
{
fixed (char* ptr_str = new char[6] {'H', 'a', 'l', 'l', 'o', ','})
{
fixed (char* ptr_str2 = new char[6] ...
6
votes
4answers
86 views
Unsafe string creation from char[]
I'm working on a high performance code in which this construct is part of the performance critical section.
This is what happens in some section:
A string is 'scanned' and metadata is stored ...
6
votes
3answers
89 views
Cannot convert uint* to uint[]
I have this code which doesn't compile:
public struct MyStruct
{
private fixed uint myUints[32];
public uint[] MyUints
{
get
{
return this.myUints;
}
...
6
votes
4answers
201 views
What is unsafe in this code?
I am learning about managed and unmanaged code in CLR.
So I wrote this example with C-style pointers in C#:
unsafe static void Main(string[] args)
{
int x;
int* y;
y = &x;
*y = ...
6
votes
2answers
1k views
C#: Maximum length of byte[]?
I'm trying to create an array of bytes whose length is UInt32.MaxValue. This array is essentially a small(ish) in-memory database:
byte[] countryCodes = new byte[UInt32.MaxValue];
On my machine, ...
6
votes
3answers
222 views
Determine if method is unsafe via reflection
I'm looking for a way to filter out methods which have the unsafe modifier via reflection. It doesn't seem to be a method attribute.
Is there a way?
EDIT: it seems that this info is not in the ...
6
votes
2answers
240 views
Is there any difference between null and 0 when assigning to pointers in unsafe code?
This may seem odd, but in C (size_t)(void*)0 == 0 is not guaranteed by the language spec. Compilers are allowed to use any value they want for null (although they almost always use 0.)
In C#, you can ...
6
votes
3answers
1k views
Why is my unsafe code block slower than my safe code?
I am attempting to write some code that will expediently process video frames. I am receiving the frames as a System.Windows.Media.Imaging.WriteableBitmap. For testing purposes, I am just applying a ...
6
votes
3answers
182 views
What is the underlying reason for not being able to put arrays of pointers in unsafe structs in C#?
If one could put an array of pointers to child structs inside unsafe structs in C# like one could in C, constructing complex data structures without the overhead of having one object per node would be ...
6
votes
1answer
252 views
Should I mingle my safe code with my unsafe code?
I'm working on a project that uses a bunch of WIN32 API calls and requires some unsafe code. From a best practices standpoint should I isolate this code in its own DLL compiled with /unsafe switch ...
6
votes
2answers
558 views
Marshal.PtrToStringUni() vs new String()?
Suppose i have a pointer of type char* to unicode string, and i know the length:
char* _unmanagedStr;
int _unmanagedStrLength;
and i have 2 ways to convert it to .NET string:
...
6
votes
9answers
1k 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, why must a compiler ...
6
votes
7answers
5k 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 code...
fixed ...
5
votes
1answer
51 views
ILGenerator: How to use unmanaged pointers? (I get a VerificationException)
I'm making a sound synthesis program in wich the user can create his own sounds doing node-base compositing, creating oscillators, filters, etc...
The program compiles the nodes onto an intermediary ...
5
votes
2answers
120 views
C# unsafe code fixed pointer passed as parameter
I came across the following code on msdn:
unsafe static void SquarePtrParam (int* p)
{
*p *= *p;
}
unsafe static void Main()
{
Point ...
5
votes
1answer
144 views
Calling an UnmanagedFunctionPointer in C# for custom calling conventions
I have a function in a DLL:
char __usercall MyUserCallFunction<al>(int arg1<esi>)
Because I hate myself I'd like to call this from within C# using P/Invoke.
Normally this can be done ...
5
votes
2answers
92 views
How can I ensure T is serializable in a fixed number of bytes?
I'm writing a generic DataStructure<T> which persists on the disk, and I need to write it such that T is guaranteed to be serializable in a fixed number of bytes. For example, int and char ...
5
votes
7answers
263 views
XOR linked list
I recently came across the link below which I have found quite interesting.
http://en.wikipedia.org/wiki/XOR_linked_list
General-purpose debugging tools
cannot follow the XOR chain, making
...
5
votes
1answer
373 views
Unsafe Class-loading Issue?
Unsafe has a method to ensure that classes are initialized:
Unsafe.ensureClassInitialized(Class) line: not available [native method]
I suspect that this type of initialization doesn't lock on the ...
5
votes
4answers
441 views
What is the advantage of using unsafe vs safe C# code?
unsafe static void SquarePtrParam (int* p)
{
*p *= *p;
}
VS
static void SquarePtrParam (ref int p)
{
p *= p;
}
5
votes
2answers
528 views
Are efficient fixed-size arrays possible without using unsafe code in .NET?
Is there a good way of implementing a fixed-size array in .NET that does not require unsafe code?
My goal is to create a value type which represents a fixed-size array which can be embedded (included ...
5
votes
1answer
381 views
Why is a fixed size buffers (arrays) must be unsafe?
Let's say I want to have a value type of 7 bytes (or 3 or 777).
I can define it like that:
public struct Buffer71
{
public byte b0;
public byte b1;
public byte b2;
public byte b3;
...
5
votes
3answers
431 views
How can I display a pointer address in C#?
I've not done any pointers since I've been programming in C# - and my C++ days were long ago. I thought I should refresh my knowledge and was just playing around with them because of another question ...
5
votes
7answers
1k 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:
void swap(int *d1, ...
4
votes
1answer
98 views
What is the overhead of C# fixed statement on a managed unsafe struct containing fixed arrays?
I've been trying to determine what the true cost of using the fixed statement within C# for managed unsafe structs that contain fixed arrays. Please note I am not referring to unmanaged structs.
...
4
votes
2answers
82 views
Unsafe code to change length (by mutation!) of a String object?
As .NET doesn't use C style nulls to end a string how can I keep the allocated string but change the length of it by using unsafe code?
As I understand .NET using a 20 bytes header for every string, ...
4
votes
3answers
164 views
Fixing an array of array in C# (unsafe code)
I'm trying to come up with a solution as to how I can pass an array of arrays from C# into a native function. I already have a delegate to the function (Marshal.GetDelegateForFunctionPointer), but now ...
4
votes
2answers
118 views
Fixed Size Array of Structure type
how do I declare fixed-size array of a structure type in C# :
[StructLayout(LayoutKind.Sequential,Pack=1), Serializable]
public unsafe struct MyStruct{
...
}
public class MyClass {
...
...
4
votes
1answer
109 views
C# Bitmap using unsafe code
I'm using the following code to make image masks in C#:
for(int x = 0; x < width; x++)
{
for(int y = 0; y < height; y++)
{
bmp.SetPixel(x,y,Color.White);
}
}
for(int x = ...
4
votes
1answer
106 views
Take the address of a ref parameter
My code is as follows
class MyClass
{
static int iField = 42;
static void Test(ref int arg)
{
unsafe
{
fixed(void* pField = &iField)
...
4
votes
1answer
144 views
Is there any point to avoiding to use “unsafe” in Mono?
I've recently come across the fact that I need to specify the "unsafe" option when working with certain concepts in C#/Mono. Not only do I have to specify the option in my code, I also have to specify ...
4
votes
2answers
173 views
How to avoid “noise” when setting pixels of image in unsafe code
I am creating (then altering) a bitmap using "unsafe" code in a C# winforms project. This is done every 30ms or so. The problem I'm having is that "noise" or random pixels will show up sometimes in ...