byte[] to int32 conversion
C#
5
Posts
3
Posters
0
Views
1
Watching
-
hi there, Just a quickie: Are there classes around to directly convert a 4byte big byte array to an Int32, or do I need to go the manual way? Thanks a lot, stonee
-
hi there, Just a quickie: Are there classes around to directly convert a 4byte big byte array to an Int32, or do I need to go the manual way? Thanks a lot, stonee
have you checked out Convert Class, it offers great varieties ;)
-
byte bt=0; int i = Convert.ToInt32(bt); MessageBox.Show(i.ToString()); switch(twinsOnWay) { case ("twins on the way"): MessageBox.Show("for mr and mrs dynamic","twins on the way"); break;
-
have you checked out Convert Class, it offers great varieties ;)