Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to Convert a Byte Array to Double in C#
WhatsApp
Mahesh Chand
6y
113.9k
0
3
100
Article
This code snippet is an example of how to convert a byte array into a double number. Code also available to convert a double number into a byte array.
The BitConverter class in .NET Framework provides functionality to convert base datatypes to an array of bytes, and an array of bytes to base data types.
The BitConverter class has a static overloaded GetBytes method that takes an integer, double or other base type value and converts that to an array of bytes. The BitConverter class also have other static methods to reverse this conversion. Some of these methods are ToDouble, ToChart, ToBoolean, ToInt16, and ToSingle.
The following code snippet in Listing 1 converts a double to a byte array and vice-versa.
class
Program
{
static
void
Main(
string
[] args)
{
Console.WriteLine(
"Double and byte arrays conversion sample."
);
// Create double to a byte array
double
d = 12.09;
Console.WriteLine(
"Double value: "
+ d.ToString());
byte
[] bytes = ConvertDoubleToByteArray(d);
Console.WriteLine(
"Byte array value:"
);
Console.WriteLine(BitConverter.ToString(bytes));
Console.WriteLine(
"Byte array back to double:"
);
// Create byte array to double
double
dValue = ConvertByteArrayToDouble(bytes);
Console.WriteLine(dValue.ToString());
Console.ReadLine();
}
public
static
byte
[] ConvertDoubleToByteArray(
double
d)
{
return
BitConverter.GetBytes(d);
}
public
static
double
ConvertByteArrayToDouble(
byte
[] b)
{
return
BitConverter.ToDouble(b, 0);
}
}
Listing 1.
Figure 1 is the output of Listing 1.
Figure 1.
BitConverter
BitConverter.GetBytes
BitConverter.ToDouble
bytes to double convert
convert byte array
Up Next
Ebook Download
View all
Printing in C# Made Easy
Read by 22.5k people
Download Now!
Learn
View all
Mindcracker
Founded in 2003, Mindcracker is the authority in custom software development and innovation. We put best practices into action. We deliver solutions based on consumer and industry analysis.
Membership not found