python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can I convert this code using GDI Bitmap pointers from C# to VB.NET?
I need help to convert my code from C# to VB.NET. I'm stuck on these lines:
byte* ptr = (byte*)(void*)bitmapData.Scan0;
byte* ptr2 = (byte*)(void*)bitmapData2.Scan0;
Here is my full code.
kokosik 1221
Votes: 0
Answers: 0
Rust, std::cell::Cell - get immutable reference to inner data
Looking through the documentation for std::cell::Cell, I don't see anywhere how I can retrieve a non-mutable reference to inner data. There is only the get_mut method: https://doc.rust-lang.org/std/ce...

Jakub Padło
Votes: 0
Answers: 2
Best way to extract strings from binary data in golang using unsafe
I have an application which loads a byte array of several gigabytes. I dont have control of the binary format. The program spends most of its time converting sections of the array into strings, doing ...
Jay
Votes: 0
Answers: 1