In c# the unsafe keyword marks code able to work directly with the memory pointers, bypassing .NET's safety checks.

learn more… | top users | synonyms

3
votes
1answer
28 views

Can string pooling be corrupted or confused by use of unsafe C# code?

If I manipulate a managed C# string in place (for example, reverse its characters) by using pointers in an unsafe code block or method, can that unsafe implementation confuse or corrupt the .NET ...
0
votes
0answers
22 views

VB Image processing: Unsafe Median Filter [closed]

These days i'm trying to learn image processing, filters, etc... I've succesfully made a Mean Filter, but i can't get the Median Filter to work properly. Here's the code: Public Function ...
0
votes
1answer
43 views

ASP.NET publish web application with unsafe code

I'm trying to publish a web application (with VS2012 Web) in which I need to run a vb script. That script currently doesn't run correctly probably because of the lack of permissions. I am currently ...
2
votes
3answers
64 views

How to write to memory address?

New to pointers and unsafe world in C#. I was going through getting memory address of variables via pointers, move things around a bit here and there etc; basically learning. static unsafe void M() ...
1
vote
0answers
22 views

LayoutKind.Sequential not followed when substruct has LayoutKind.Explicit

When running this code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace StructLayoutTest { class Program ...
4
votes
4answers
95 views

Unsafe string pointer statement

As I understood, according to MSDN C# fixed statement should work like: fixed (char* p = str) ... // equivalent to p = &str[0] so, why I can`t do this? const string str = "1234"; fixed ...
1
vote
0answers
111 views

compare two image data using unsafe method (c#)

I am writing a function to get difference between two bitmap images in visual studio 2010. I have a function that takes two bitmap images as parameters, I use unlock bits to get data of each ...
1
vote
1answer
52 views

Java “unchecked or unsafe operations” and Java's own classes

While reading the source code for HashMap class I've noticed that they use (line 149) transient Entry<K,V>[] table; And then they initialize it with (line 283) : table = new ...
0
votes
1answer
35 views

unchecked or unsafe operations even after specifying type

I get the following warning Note: com.......\BeerSelect.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. I have specified the type as well.. I would like ...
2
votes
2answers
53 views

Compiler complains about unsafe operation, but doesn't allow alternative?

The following line of code causes javac to give an unsafe operation warning: LinkedList<Node>[] buckets = new LinkedList[bucketCount]; However, when I try to fix that by doing this: ...
0
votes
0answers
53 views

Limitations of unsafe assembly

I have a library written in C# and there's a bunch of classes that I consider making unsafe for performance reasons. I remember reading somewhere that it might be impossible to use unsafe assemblies ...
0
votes
1answer
48 views

Program uses unchecked or unsafe operations for 2d ArrayList[][]

I have a task at the university to make a play board made of play fields. Every field can contain numerous items on it. I made it with an array arrayList like that: List<String>[][] items = ...
0
votes
2answers
109 views

Serialization/Deserialization of Pointers / Memory References

I am writing a XML serializer which uses reflection to recursively crawl through an object's public or private fields to store as XML and later reconstruct, and while testing my serializer on the ...
0
votes
1answer
117 views

variable lost after unsafe code block

I have a very strange problem. Here is my code: <declare E,JV> <perform some actions with E> JV.Math_Mul(E); //// public new void Math_Mul(Matrix a) { double[,] vC = new ...
3
votes
3answers
72 views

Unsafe pointer manipulation

I'm trying to write a CPU emulator in C#. The machine's object looks like this: class Machine { short a,b,c,d; //these are registers. short[] ram=new short[0x10000]; //RAM organised as ...
6
votes
1answer
103 views

Why is await forbidden in unsafe sections?

According to http://blogs.msdn.com/b/pfxteam/archive/2012/04/12/async-await-faq.aspx, the await keyword is forbidden inside an unsafe block, mentioning only 'difficulties inherent to preserving ...
5
votes
3answers
101 views

How to use fixed with a variable of type Array or T[]?

I'm working on an IEqualityComparer which is supposed to compare arrays of primitive types really fast. My plan is to obtain pointers to the arrays and memcmp them. Like this: public unsafe ...
4
votes
1answer
77 views

inner working of 'fixed': working on memory location or object?

In managed/unmanaged array interoperability, I have a case of not having the usual fixed (byte* data = new byte[length]) { // work with the array } but rather, I want to pin an array where I ...
3
votes
1answer
91 views

Is fixed required with lockbits?

I have some code which has the error "AccessViolationException was unhandled by user code: Attempted to read or write protected memory..." A trimmed down version of the offending function is as ...
0
votes
1answer
2k views

Error lnk2026: module unsafe for safeseh image

I got this error when building a sample visual C++ project. First I downloaded 3 sample projects, all solve the same problem, print out all the prime numbers less than N (you may know these sample ...
2
votes
1answer
107 views

Unchecked or Unsafe operations homework

In my most recent class assignment we've been working with generics and I have been receiving this warning: Note: Selector.java uses unchecked or unsafe operations. Note: Recompile with ...
8
votes
3answers
308 views

Fast read C structure when it contains char array

I have the following C structure struct MyStruct { char chArray[96]; __int64 offset; unsigned count; } I now have a bunch of files created in C with thousands of those structures. I ...
1
vote
2answers
568 views

Windows Phone 8(WP8) C# unsafe code?

Why or why does C# on WP8 not support unsafe code when I can use native C++ code on the phone(I did not expect this)? I mean rly come on, I am so disappointed with what Microsoft is trying to force ...
1
vote
2answers
149 views

Make process memory dump and restore it later in .NET

I'm looking for a way to increase .NET application startup time. Idea is to make a process memory dump right after startup initialization and store it on disk. On second run it would be nice to ...
1
vote
1answer
54 views

call function with char**

There is a dll, which contains the function. extern "C" __ declspec (dllexport) int iRun (int argv, char ** argc) In the project on C # I connect dll, and the actual question. It is possible and ...
0
votes
2answers
282 views

Image processing task: Erosion C#

I am doing an image processing assignment where I want to implement erosion and dilation algorithm. It needs to look for each pixel in all directions (in this case up, down, left and right), so i'm ...
9
votes
3answers
256 views

Keep a TypedReference alive out of method block without returning it

I want to premise that this question's purpose is checking if there's at least one way, even if through the most unsafe hack, to keep a reference to a non-blittable value type. I am aware that such a ...
1
vote
0answers
175 views

Access Violation with forms.ShowDialog() [closed]

I have a DataGridView and on double click of cell, I am opening new dialog, containing TabControl. I am getting following exception while opening new dialog. This is very infrequent problem. ...
1
vote
1answer
250 views

C# unsafe type -> char*[] , getting a pointer on char array

Have: [DllImport("OpenAL32.dll")] static extern void alcOpenDevice(char*[] devicename); Wanna send the name to this function like smth that: char[] data = "Hello!".ToCharArray(); char*[] txt = ...
3
votes
1answer
331 views

Image mask filter

I have 3 System.Drawing.Bitmap objects. A RGB foreground, RGB background, and a single byte per pixel mask image where 0 means take the background pixel and 1 means take the foreground pixel. All ...
1
vote
2answers
128 views

Access Violation Using BitmapData in Image Mask Function

I wrote a version of this function which takes a grayscale bitmap as a mask and a source bitmap and outputs a bitmap with the mask applied using SetPixel and GetPixel but it was very slow, so instead ...
2
votes
1answer
207 views

Unsafe in VB.Net

I need to pass a function C# to VB.NET, but in C# I have something like that: unsafe { byte* pSmall = (byte*)(void*)smallData.Scan0; byte* pBig = (byte*)(void*)bigData.Scan0; int ...
0
votes
1answer
144 views

How do I convert a struct to a byte array without a copy?

[StructLayout(LayoutKind.Explicit)] public struct struct1 { [FieldOffset(0)] public byte a; // 1 byte [FieldOffset(1)] public int b; // 4 bytes [FieldOffset(5)] ...
0
votes
2answers
133 views

How do I **write** to ArraySegment<byte>.Array? Should I use unsafe code?

There are many questions that ask how to get a subset of an array on this site, however no one has successfully gotten an answer on how to write to the array as if it were byte[]. byte[] ...
3
votes
1answer
5k views

“Unsafe JavaScript attempt to access frame with URL” error causing JavaScript rollovers to fail

I'm trying to embed a YouTube video inside an XSL page, but keep getting the following error: Unsafe JavaScript attempt to access frame with URL [URL removed] from frame with URL ...
2
votes
2answers
100 views

Memory values with java

I've just wrote a code, wich accesses the memory, I checked the adress (in code) with cheatengine, and I printed it with System.out, and it's different. I know it's a long value, but in hex, the value ...
-1
votes
2answers
756 views

Facebook thinks this site may be unsafe. If you're not familiar with it, please provide feedback by marking it as spam

why facebook marked my tumblr site as spam? "Facebook thinks this site may be unsafe. If you're not familiar with it, please provide feedback by marking it as spam (you'll be brought back to ...
4
votes
2answers
248 views

Perversion with unsafe C#, memory stack allocation

Here I'm trying to work with unsafe features of C#: http://ideone.com/L9uwZ5 I know, that such way in C# is worst, and I want to admit, that there is some info in the topic. Look at the word ...
1
vote
0answers
204 views

C# - Multithreaded Processing of a single Image (Webcam Frames)

I have made a programm which is able to capture webcam frames and display them after running different per pixel algorithms - for example making the image gray scale. At the moment I am using the ...
2
votes
3answers
760 views

error C4996: 'ctime': This function or variable may be unsafe

I have a large project about static source code analysis, and everything compiles successfully, except for one thing. I have provided the error message in the title. The point that confuses me is that ...
2
votes
3answers
101 views

Java casting utility library

I'm wondering if there exists a library to perform a bunch of mundane casts (basically a wrapper around a bunch of potentially unsafe casts that, for the most part, isn't an issue in practice). For ...
1
vote
1answer
117 views

Building Program with unsafe code in Codedom

I'm trying to compile some unsafe code from an application using Codedom, but everytime I get an error saying I must use "/unsafe." I've googled the issue and added: Parameters.CompilerOptions = ...
3
votes
4answers
870 views

Cannot take the address of, get the size of, or declare a pointer to a managed type

I've done a fair bit of research, but am stuck now as to why I'm still getting this error. I have a struct with the following attributes: struct Account { //private attributes private double ...
2
votes
1answer
285 views

try catch exceptions in unsafe code

I am writing some image processing code and use C# to do low level pixel manipulation. Every once in a while, an accessViolationException happens. There are several approaches to this typical ...
3
votes
2answers
134 views

Sandboxing user code with Erlang

As far as I know Erlang provides advanced features for error handling and isolation of processes. I'm building a system that allow user to submit their code to be executed on the shared server ...
0
votes
1answer
48 views

Getting an unsafe fixed pointer to the start of a rectangular array

Consider a 2D, rectangular array. Say: int[,] values = new int[len1, len2]; How can you iterate through all of its values in unsafe code?
0
votes
1answer
112 views

how do I get the instance of sun.misc.Unsafe

how do I get the instance of the unsafe class? I always get the security exception. I listed the code of the OpenJdk6 implementation. I would like to mess around with the function sun.misc.Unsafe ...
0
votes
1answer
216 views

Pointer to string of type int

I'm trying to get a pointer to a string, where the pointer is of type int. I'm not sure if I'm doing it correctly. I just found out yesterday about unsafe and fixed, so I'm still questioning this a ...
0
votes
1answer
211 views

Not clear unsafe code in draw pixel method

Lately I got low level graphics programming job to do (implementing raster graphics algorithms). That's why I started to look for tools (classes) which would be helpful to draw primitives (lines, ...
0
votes
1answer
161 views

Initialise an unsafe fixed double array in struct

This question is a follow up from Marshalling C# structure to C++ Using StructureToPtr. I have the following struct: [StructLayout(LayoutKind.Explicit, Size = 120, CharSet = CharSet.Unicode)] public ...

1 2 3 4 5 6