[C#] Struct to Byte-array and back



Setup / Code:
The struct we will send.
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct datastruct
{
 [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 10)] // Max length of string
 public string str;
 public float x;
 public float y;
}

This converts the struct into an array of bytes.
public static Byte[] SerializeMessage<T>(T msg) where T : struct
{
 int objsize = Marshal.SizeOf(typeof(T));
 Byte[] ret = new Byte[objsize];
 IntPtr buff = Marshal.AllocHGlobal(objsize);
 Marshal.StructureToPtr(msg, buff, true);
 Marshal.Copy(buff, ret, 0, objsize);
 Marshal.FreeHGlobal(buff);
 return ret;
}

This converts it back into a struct.
public static T DeserializeMsg(Byte[] data) where T : struct 
{
 int objsize = Marshal.SizeOf(typeof(T));
 IntPtr buff = Marshal.AllocHGlobal(objsize);
 Marshal.Copy(data, 0, buff, objsize);
 T retStruct = (T)Marshal.PtrToStructure(buff, typeof(T));
 Marshal.FreeHGlobal(buff);
 return retStruct;
}

Usage:
Struct to byte-array.
yourstruct info = new yourstruct();
info.str= "hej";
info.x = 2;
info.y = 4;
byte[] bytearray = MarshalHelper.MarshalHelper.SerializeMessage<datastruct>(info);

Byte-array to struct.
byte[] data  = bytearray; // from above code
object d = MarshalHelper.MarshalHelper.DeserializeMsg<datastruct>(data);
datastruct ds = (datastruct)d;

"Output"

ds.str = hej
ds.x = 2
ds.y = 4
Unknown at: April 21, 2013 at 11:18 PM said...

Thank you! This is really great stuff.

Anonymous at: July 12, 2013 at 5:15 PM said...

Thanks a million.

Anonymous at: February 13, 2014 at 7:50 AM said...

In SerializeMessage, the 3rd parameter (fDeleteOld) in the call to StructureToPtr should be false.

http://blogs.msdn.com/b/dsvc/archive/2009/11/02/p-invoke-marshal-structuretoptr.aspx

Thanks for the post.

Anonymous at: February 13, 2014 at 7:53 AM said...

Thanks for the correction! Glad this post is still useful to people.

Reijo at: August 4, 2014 at 4:56 AM said...

Very useful thanks. I did not find class MarshalHelper ? But it worked Ok without.

Jonathan Winger-Lang at: August 4, 2014 at 4:57 AM said...

I believe MarshalHelper is the class I made, but anyway glad it worked.

Anonymous at: September 7, 2014 at 10:55 AM said...

Thanks, this worked wonders for me!

Unknown at: April 30, 2015 at 6:18 AM said...

Hi – Fantastic work!!

But I have try to use your example to convert an arrayList of struct to a single bytearray.
My problem is that when I convert it back again every item in my arraylist gets the same values.

Do some one know how to make this work??

by Mik

Anonymous at: April 30, 2015 at 8:47 PM said...

Hey, sorry I don't know how to do that and I'm not in a position where I can test it. If you do find out please leave a comment how you fixed it! // Jonathan

IT Tutorials at: April 2, 2017 at 9:56 PM said...

It is really a great work and the way in which u r sharing the knowledge is excellent.
Thanks for helping me to understand basic concepts. As a beginner in Dot Net programming your post help me a lot.Thanks for your informative article. Dot Net Training in chennai | Dot Net Training in velachery

Unknown at: April 2, 2017 at 10:57 PM said...

Given so much information in it. its very useful .perfect explanation about struct.Thanks for your valuable information. dot net training in velachery | dot net training in chennai

SRI at: September 4, 2018 at 3:16 AM said...

It's interesting that many of the bloggers to helped clarify a few things for me as well as giving.Most of ideas can be nice content.The people to give them a good shake to get your point and across the command

rpa online training

automation anywhere training in chennai

automation anywhere training in bangalore

automation anywhere training in pune

automation anywhere online training

blueprism online training

rpa Training in sholinganallur

rpa Training in annanagar

blueprism-training-in-pune

automation-anywhere-training-in-pune

SRI at: September 4, 2018 at 4:08 AM said...

This is an awesome post.Really very informative and creative contents. These concept is a good way to enhance the knowledge.I like it and help me to development very well.Thank you for this brief explanation and very nice information.Well, got a good knowledge.

rpa Training in tambaram

blueprism Training in tambaram

automation anywhere training in tambaram

iot Training in tambaram

rpa training in sholinganallur

blue prism training in sholinganallur

automation anywhere training in sholinganallur

iot training in sholinganallur


nilashri at: September 13, 2018 at 12:40 AM said...

Thank you for allowing me to read it, welcome to the next in a recent article. And thanks for sharing the nice article, keep posting or updating news article.

Data Science Training in Chennai
Data science training in bangalore
Data science online training
Data science training in pune
Data Science training in kalyan nagar
Data Science training in OMR
selenium training in chennai

nilashri at: September 13, 2018 at 12:40 AM said...

It seems you are so busy in last month. The detail you shared about your work and it is really impressive that's why i am waiting for your post because i get the new ideas over here and you really write so well.
Data Science training in marathahalli
Data Science training in btm
Data Science training in rajaji nagar
Data Science training in chennai
Data Science training in electronic city
Data Science training in USA
Data science training in pune
Data science training in kalyan nagar




afiah b at: September 14, 2018 at 11:50 PM said...

Thanks you for sharing this unique useful information content with us. Really awesome work. keep on blogging

java training in marathahalli | java training in btm layout

java training in jayanagar | java training in electronic city

Unknown at: September 18, 2018 at 10:23 PM said...

Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative. I can't wait to read lots of your posts
python training in rajajinagar
Python training in btm
Python training in usa

pooja at: September 24, 2018 at 10:40 PM said...

Awesome..You have clearly explained …Its very useful for me to know about new things..Keep on blogging..
Blueprism training in marathahalli

Blueprism training in btm

Blueprism online training

pooja at: September 24, 2018 at 10:41 PM said...

Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
Blueprism training in marathahalli

Blueprism training in btm

Blueprism online training

sathya shri at: October 5, 2018 at 1:45 AM said...

All are saying the same thing repeatedly, but in your blog I had a chance to get some useful and unique information, I love your writing style very much, I would like to suggest your blog in my dude circle, so keep on updates.
angularjs Training in bangalore

angularjs Training in btm

angularjs Training in electronic-city

angularjs online Training

angularjs Training in marathahalli

sathya shri at: October 5, 2018 at 1:45 AM said...

Great content thanks for sharing this informative blog which provided me technical information keep posting.

angularjs Training in chennai
angularjs Training in chennai

angularjs-Training in tambaram

angularjs-Training in sholinganallur

angularjs-Training in velachery

Anjali Siva at: October 31, 2018 at 11:25 PM said...

Thanks for taking time to share this pretty post, it is really helpful.
Angularjs Training in Chennai
Angularjs course in Chennai
Angularjs Training Institute in Chennai
Angularjs Training center in Chennai
AWS course in Chennai
Robotics Process Automation Training in Chennai

Anbarasan14 at: November 2, 2018 at 5:53 AM said...

Thanks for this kind of worthy information. this was really very helpful to me. keep continuing.

IELTS Classes in Chennai
Best IELTS Courses in Chennai
IELTS in Chennai
Best IELTS Class in Chennai
IELTS Training Institute in Chennai
IELTS Coaching Classes in Chennai
Best IELTS Institute in Chennai

Aruna Ram at: November 13, 2018 at 3:58 AM said...

The provided information’s are very helpful to me. I am very glad to read your wonderful blog. Got to learn and know more in this. Thank you!
Blue Prism Training Institute in Bangalore
Blue Prism Course in Bangalore
Blue Prism Training Bangalore
Blue Prism Classes in Bangalore
Blue Prism Course in Adyar
Blue Prism Training in Mogappair

Vicky Ram at: November 16, 2018 at 10:03 PM said...

Interesting Post. Looking for this information for a while. Thanks for Posting.

oceanofquotes
Article submission sites

mercyroy at: November 23, 2018 at 9:04 PM said...

Thanks for sharing,this blog makes me to learn new thinks.
interesting to read and understand.keep updating it.
Salesforce Training in Saidapet
Salesforce Training in Ashok Nagar
Salesforce Training in Nolambur
Salesforce Training in Perambur

sathyaramesh at: December 7, 2018 at 3:34 AM said...

Its a wonderful post and very helpful, thanks for all this information. You are including better information regarding this topic in an effective way. T hank you so much.
RPA course
Robotic Process Automation Certification
RPA Training
Robotics Process Automation Training in Chennai
RPA courses in Chennai
Robotic Process Automation Training

Sadhana Rathore at: December 12, 2018 at 11:21 PM said...

Thanks a lot for sharing this page, really informative.
Data Science Course in Chennai
Data Analytics Courses in Chennai
Data Science Training in Chennai
Data Science Training near me
Big Data Analytics Training in Chennai
Big Data Analytics Courses in Chennai
Data Analytics Training in Chennai
Data Analyst Course in Chennai

VenuBharath2010@gmail.com at: January 7, 2019 at 12:51 AM said...


You are an amazing writer. The content is extra-ordinary. Reading your article gives me an inspiration. Thanks for sharing.
Spoken English Classes in Chennai
Best Spoken English Classes in Chennai
Spoken English Class in Chennai
Spoken English in Chennai
Best Spoken English Class in Chennai
English Coaching Classes in Chennai
Best Spoken English Institute in Chennai

karthick at: February 16, 2019 at 5:00 AM said...


Thanks for providing wonderful information with us. Thank you so much.
Data Science Course in Chennai

Hari K at: February 27, 2019 at 4:49 AM said...

Good to read very impressive.

devops course in chennai

Joe at: March 7, 2019 at 2:10 AM said...


Great Show. Wonderful write-up. Thanks for Sharing.
Xamarin Training in Chennai
Xamarin Course in Chennai
Xamarin Training
Xamarin Course
Xamarin Training in OMR
Xamarin Training in Porur

raybon at: March 9, 2019 at 1:04 AM said...

This is a good post. This post give truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. thank you so much. Keep up the good works.

devops online training

aws online training

data science with python online training

data science online training

rpa online training

rose at: March 9, 2019 at 1:51 AM said...

Thanks for such a great article here. I was searching for something like this for quite a long time and at last I’ve found it on your blog. It was definitely interesting for me to read  about their market situation nowadays.
Microsoft Azure online training
Selenium online training
Java online training
Python online training
uipath online training

Joe at: April 12, 2019 at 11:33 PM said...

Great Article. Good choice of words. Waiting for your future updates.
Hadoop Admin Training in Chennai
Hadoop Administration Training in Chennai
Hadoop Administration Course in Chennai
Hadoop Administration Training
Hadoop Admin Training in Velachery
Hadoop Admin Training in T Nagar
Hadoop Admin Training in Tambaram

LindaJasmine at: April 16, 2019 at 2:18 AM said...

Great Applause. The content you shared is very inspirational. Thanks for Posting.
Blockchain certification
Blockchain course
Blockchain courses in Chennai
Blockchain Training Chennai
Blockchain Training in Anna Nagar
Blockchain Training in T Nagar
Blockchain Training in OMR
Blockchain Training in Porur

nisha at: May 27, 2020 at 3:53 AM said...

Thanks for sharing this Blog. the content of this blog is really explained well.

Data Science Training Course In Chennai | Data Science Training Course In Anna Nagar | Data Science Training Course In OMR | Data Science Training Course In Porur | Data Science Training Course In Tambaram | Data Science Training Course In Velachery

Revathi at: July 15, 2020 at 3:11 AM said...

I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!Keep it up!!

Android Training in Chennai | Certification | Mobile App Development Training Online | Android Training in Bangalore | Certification | Mobile App Development Training Online | Android Training in Hyderabad | Certification | Mobile App Development Training Online | Android Training in Coimbatore | Certification | Mobile App Development Training Online | Android Training in Online | Certification | Mobile App Development Training Online

devi at: August 5, 2020 at 12:50 PM said...


Thanks For Sharing The information The Information Shared Is Very Valuable Please Keep Updating us The Information shared Is Very Valuable.I wanted to thank for sharing this article and I have bookmarked this page to check out new stuff.


Data Science Training In Chennai

Data Science Online Training In Chennai

Data Science Training In Bangalore

Data Science Training In Hyderabad

Data Science Training In Coimbatore

Data Science Training

Data Science Online Training

shiny at: August 29, 2020 at 5:08 AM said...

Very interesting blog. Many blogs I see these days do not really provide anything that attracts others, but believe me the way you interact is literally awesome.



hardware and networking training in chennai

hardware and networking training in annanagar

xamarin training in chennai

xamarin training in annanagar

ios training in chennai

ios training in annanagar

iot training in chennai

iot training in annanagar

deiva at: August 31, 2020 at 12:39 AM said...

It's interesting that many of the bloggers to helped clarify a few things for me as well as giving.Most of ideas can be nice content.The people to give them a good shake to get your point and across the command
hardware and networking training in chennai

hardware and networking training in omr

xamarin training in chennai

xamarin training in omr

ios training in chennai

ios training in omr

iot training in chennai

iot training in omr

vicky at: September 5, 2020 at 2:46 AM said...

Thanks for sharing thorough this post is very much helpful to develop new idea. here by i also want to share this.

web designing training in chennai

web designing training in tambaram

digital marketing training in chennai

Unknown at: January 20, 2022 at 4:47 AM said...

This is my first time i visit here and I found so many interesting stuff in your blog especially it's discussion, thank you. data scientist course in kanpur

seda at: March 21, 2023 at 12:41 PM said...

betmatik
kralbet
betpark
mobil ödeme bahis
tipobet
slot siteleri
kibris bahis siteleri
poker siteleri
bonus veren siteler
JOUKEE