3
votes
1answer
117 views

C# Mixed Unsafe/Safe Library

I'm slowly building a code libary for use across several applications. Some of the code is processing images and pre-existing message formats (converted from C++) so unsafe code is required. Any ...
2
votes
2answers
193 views

Making a block of “unsafe” code “safe”

I have this unsafe code that I need to make safe so it can execute. I know about the fixed block, but I don't know how to implement it: private static unsafe void PrintHex(byte* data, uint len) ...
0
votes
0answers
251 views

A complete list of unsafe string handling functions and their safer replacements for linux

I am looking for something like that: strcpy -> strncpy sprintf -> snprintf etc Google does not know I a'm afraid. Do you?
0
votes
1answer
194 views

Why it is not safe to use pointers [closed]

I think the question is clear. I still having difficulties on where should I code my software in? C++ or C#? Why C# had to have managed code? And so even it has, Why today's most softwares still ...
0
votes
1answer
111 views

Safe Indexing Inside Unsafe Code

Good morning, afternoon or night, Foreword: The code below does nothing really useful. It is just for explanation purposes. Is there anything wrong with allocating and using an array "the safe mode" ...
3
votes
4answers
4k views

True Unsafe Code Performance

Good morning, afternoon or night, I understand unsafe code is more appropriate to access things like the Windows API and do unsafe type castings than to write more performant code, but I would like ...