Casting question

G

Guest

Hi All,

I'm stuck whit an issue I can't seem to resolve in C#:

I have an arry of bytes which I would like to "recast" to an array of
structs with an Explicit layout. I tried the Buffer.BlockCopy method, but
that one complains my struct is not a primitive type.

Any Suggestions ?

In detail:
my struct contains an int and a byte (so nothing special like arrays or so
;-), you can maybe best compare it with a point structure)

The array of bytes is... just an arry of bytes.

Ideally what I would like to do is assign the address of the last one to the
address of the first one. But C# doesn't like that anymore (?).

So I tried Buffer.BlockCopy, but as stated before that doesn't seem to work
because my struct is not a primitive type.

So Plan B. Using unsafe code and a fixed statement: I was able to iterate
through my byte array and cast/copy every struct item one by one. Altough it
did work, I don't really like this solution as it is consuming quite some
time (large array) while the memory contents are just identical for both.

Can somebody help me out on this.
 
?

=?iso-8859-1?Q?Lasse=20V=e5gs=e6ther=20Karlsen?=

Hi All,
I'm stuck whit an issue I can't seem to resolve in C#:

I have an arry of bytes which I would like to "recast" to an array of
structs with an Explicit layout. I tried the Buffer.BlockCopy method,
but that one complains my struct is not a primitive type.
<snip>

Look at the Marshal class.
 
G

Guest

I did have look at the Marshal.PtrToStructure Class, but it only allows me to
transfor 1 struct a a time, not an array of structs at once.

Maybe there are some tricks I don't know about Marshal yet ?

Kindest regrads,

Tom
 
?

=?iso-8859-1?Q?Lasse=20V=e5gs=e6ther=20Karlsen?=

I did have look at the Marshal.PtrToStructure Class, but it only
allows me to transfor 1 struct a a time, not an array of structs at
once.

Maybe there are some tricks I don't know about Marshal yet ?

Kindest regrads,

I think you need to marshal them one at a time. Perhaps someone with better
knowledge of the Marshal class can correct me?
 
I

Ignacio Machin \( .NET/ C# MVP \)

Hi,



Kevin Spencer said:
You may find the following article helpful. While it deals with reading
structures from binary files (streams), a stream is almost the same as an
array of bytes:


As a matter of fact you have MemoryStream which has one constructor that
receive a byte[]
 
G

Guest

Hi,

I included some code:

/*
Sample is a Struct define like this:

[StructLayout(LayoutKind.Explicit,Pack=1,Size=5)]
public struct Sample
{
[FieldOffset(0)] public UInt32 Tau;
[FieldOffset(4)] public Byte Value;
}
*/

_tempBuffer = new Sample[mSimBuffer[_bufferToUse].Length/5];
byte[] Bytes = (byte[])mSimBuffer[_bufferToUse];

//This works, but will convert only 1
GCHandle _hnd =
GCHandle.Alloc(mSimBuffer[_bufferToUse],GCHandleType.Pinned);
Object temp =
Marshal.PtrToStructure(_hnd.AddrOfPinnedObject(),typeof(Sample));
_hnd.Free();


//This will throw an error: "The specified structure must be blittable
or have layout information."
//Actually I don't really understand this one: didn't I provide enough
layout info in my struct def?
GCHandle _hnd2 = GCHandle.Alloc(_tempBuffer,GCHandleType.Pinned);
Marshal.StructureToPtr(Bytes,_hnd2.AddrOfPinnedObject(),false);
_hnd2.Free();
 
G

Guest

Hi Kevin,

Thanks for the reply, using the Marshal.Copy method I was able to get it
working.

Do you know if this Copy method will actually copy every byte to another
memory location, or just set the pointers to the same address ?
the reason I'm asking this is that I need real good performance...

Kindest regards,

Tom
 
G

Guest

Marshal.Copy copies data from managed memory to unmanaged memory, and vice
versa.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top