Tagged Questions
This class provides conversions from byte arrays to value types and vice versa.
7
votes
3answers
644 views
Fast casting in C# using BitConverter, can it be any faster?
In our application, we have a very large byte-array and we have to convert these bytes into different types. Currently, we use BitConverter.ToXXXX() for this purpose. Our heavy hitters are, ToInt16 ...
5
votes
1answer
3k views
What is the Java equivalent of .NET BitConverter?
I was writing an article in which I wanted to show how to send objects across the network, from Java to CLR/.Net and Back.
...
4
votes
5answers
79 views
About the “GetBytes” implementation in BitConverter
I've found that the implementation of the GetBytes function in .net framework is something like:
public unsafe static byte[] GetBytes(int value)
{
byte[] bytes = new byte[4];
fixed(byte* b = ...
4
votes
6answers
212 views
What are the use-cases for IsLittleEndian in BitConverter class?
I was so happy when I discovered IsLittleEndian field in BitConverter. I thought of course it should be there and I should be able to specify whatever endian I like. Well, my happiness didn’t last ...
3
votes
2answers
795 views
Converting Int32 to 24-bit signed integer
I have a need to convert an Int32 value to a 3-byte (24-bit) integer. Endianness remains the same (little), but I cannot figure out how to move the sign appropriately. The values are already ...
3
votes
5answers
269 views
Is there a less painful way to GetBytes for a buffer not starting at 0?
I am having to deal with raw bytes in a project and I need to basically do something like this
byte[] ToBytes(){
byte[] buffer=new byte[somelength];
byte[] tmp;
...
2
votes
1answer
82 views
C# BitConverter problems
Normaly if you want for example represent 5 in byte array it will be smth like {0x00,0x00,0x00,0x05} but BitConverter gives me reversed array({0x05,0x00,0x00,0x00})
Why it is so and where I'm wrong?
2
votes
5answers
183 views
Byte[] to ASCII
I received the contents of a text file returned in binary values:
Byte[] buf = new Byte[size];
stream = File.InputStream;
stream.Read(buf, 0, size);
How can I convert this to ASCII?
2
votes
2answers
187 views
how to get ushort data in c# A909 for 41104?
hello
I'm trying to convert an int value to 16 bit unsigned char type (USHORT)
in example 41104 is A909 in ushort
but in c#
i tried code samples as
byte[] bytes = BitConverter.GetBytes(41104);
...
2
votes
2answers
384 views
How to reverse a RectangleF to a Picasa face hash
Here are the details for what Picasa stores as a hash. It stores them like this:
faces=rect64(54391dc9b6a76c2b),4cd643f64b715489
[DSC_2289.jpg]
faces=rect64(1680000a5c26c82),76bc8d8d518750bc
Info ...
1
vote
1answer
59 views
Fastest way to get sort order byte array from signed integer
I know I can use bitconverter.GetBytes to get the bytes from an integer.
However, I need an array where the contents can be compared for sort order.
e.g.
var plusOne = BitConverter.GetBytes(1);
...
1
vote
6answers
199 views
C# - Read a double value
Suppose there is only one single double value written into a file in binary format. How can I read that value using C# or Java?
If I have to find a double value from a huge binary file, what ...
1
vote
2answers
300 views
c++ Convert string to bytes to send over tcp
I'm trying to send a 28 character string to a remote ip address and port. I've done this successfully in vb.net using the following code snippets:
Dim swon As String = "A55A6B0550000000FFFBDE0030C8"
...
1
vote
5answers
687 views
Converting raw byte data to float[]
I have this code for converting a byte[] to float[].
public float[] ConvertByteToFloat(byte[] array)
{
float[] floatArr = new float[array.Length / sizeof(float)];
int index = 0;
for (int ...
1
vote
1answer
153 views
Objective-C: How to read data from .NET's BitConverter class
In a .NET web application the BitConverter class is being used to convert Int32's into a byte array like so:
byte[] intBuffer = BitConverter.GetBytes(12345);
Now I am trying to read this back into ...
1
vote
2answers
424 views
Bit convector : Get byte array from string
When I have a string like "0xd8 0xff 0xe0" I do
Text.Split(' ').Select(part => byte.Parse(part, System.Globalization.NumberStyles.HexNumber)).ToArray();
But if I got string like "0xd8ffe0" I ...
1
vote
2answers
1k views
Alternative to BitConverter.ToInt32
I'm using BitConverter.ToInt32 to pack 3 byte values into an int, like so:
byte R = 0;
byte G = 0;
byte B = 0;
int i = BitConverter.ToInt32(new byte[] { R, G, B, 0 }, 0);
Is there a faster way to ...
0
votes
2answers
75 views
Reading MP3 Frameheader - assigning bit values to variables
I am learning visual basic .net and I am attempting to translate some java source code to a vb.net project. The project reads mp3 details and then splits the file accurately according to the ...
0
votes
0answers
69 views
Byte conversion manipulation mathimatics C#
I'm trying to convert some very old code which has very bad naming to easier understand it.
Here is what I understand so far.
SB = Signed Byte
UB = Unsigned Byte.
...
0
votes
2answers
209 views
BitConverter VS ToString for Hex
Just wondering if someone could explain why the two following lines of code return "different" results? What causes the reversed values? Is this something to do with endianness?
...
0
votes
1answer
43 views
BitConvert.IsLittleEndianon on different endian architectures
The documentation of BitConverter.IsLittleEndian says:
Indicates the byte order ("endianness") in which data is stored in this computer architecture.
"this" is confusing me. Say I have the ...
0
votes
1answer
112 views
Convert pointer to loop option in C#
How would I convert this into a loop and not to use the pointer.
byte[] InputBuffer = new byte[8];
unsafe {
fixed (byte* pInputBuffer = InputBuffer) {
((long*)pInputBuffer)[0] = value;
...
0
votes
2answers
240 views
BitConverter.ToInt16 Adds 0xFFFF to Number? (C#)
I've got a problem here that's probably something that I'm just overlooking, but I can't understand why it's happening...
The problem I'm having is that I'm using the bit converter to give me an ...
0
votes
1answer
140 views
help with BitConverter!
I cannot get the BitConverter class to work. I get the error 'BitConverter' undeclared (first use this function). I have tried putting 'using System;' at the top of my code because I saw that in some ...
0
votes
1answer
300 views
Index out of range at “int msgLength = BitConverter.ToInt32(gzBuffer, 0);”
I am currently working on some game made in C# XNA.
Since I need to send a huge chunk of data over net (bout 96kb), I am using some string compressor/decompressor code, which I found on the internet.
...
0
votes
0answers
148 views
C# Breakpoint Weirdness
In my program I've got two data files A and B. The data in A is static and the data in B refers back to the data in A. In order to make sure the data in B is invalidated when A is changed, I keep an ...
0
votes
5answers
1k views
Writing a 2-byte integer to a stream?
I'm trying to interact with an application over the network which uses a simple protocol. I have to send a header that looks like this:
2 bytes = Data Length (including Request Type)
1 byte = Request ...