Convert double to an array of bytes. : BitConverter « Development Class « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Development Class » BitConverterScreenshots 
Convert double to an array of bytes.
 
using System;

class GetBytesDoubleDemo
{
    const string formatter = "{0,25:E16}{1,30}";
    public static void GetBytesDoubledouble argument )
    {
        byte[ ] byteArray = BitConverter.GetBytesargument );
        Console.WriteLineformatter, argument, BitConverter.ToStringbyteArray ) );
    }

    public static void Main( )
    {
        GetBytesDouble0.0 );
        GetBytesDouble1.0 );
    }
}

   
  
Related examples in the same category
1.Convert byte array to String with BitConverter
2.Convert byte array to Int32
3.BitConverter converts base data types to an array of bytes, and an array of bytes to base data types.
4.Convert bytes to UInt32.
5.Convert various data type to string with BitConverter
6.Converts double number to a 64-bit signed integer.
7.Convert Boolean value to an array of bytes.
8.Convert Unicode character to an array of bytes.
9.Convert 16-bit signed integer value to an array of bytes.
10.Convert 32-bit signed integer value to an array of bytes.
11.Convert 64-bit signed integer value to an array of bytes.
12.Convert single-precision floating point value to an array of bytes.
13.Convert specified 16-bit unsigned integer value to an array of bytes.
14.Convert specified 32-bit unsigned integer value to an array of bytes.
15.Convert specified 64-bit unsigned integer value to an array of bytes.
16.Converts 64-bit signed integer to a double-precision floating point number.
17.Indicates the byte order ("endianness")
18.Convert one byte at a specified position in a byte array to bool
19.Convert two bytes at a specified position in a byte array to a Unicode character
20.Convert two bytes at a specified position in a byte array to a 16-bit signed integer
21.Convert four bytes at a specified position in a byte array to a 32-bit signed integer
w__ww._ja___v__a__2_s___._c__om__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.