Shows how to use bit_converter::is_big_endian method.
#include <xtd/bit_converter>
#include <xtd/console>
#include <xtd/startup>
 
 
namespace bit_converter_is_big_endian_example {
  class program {
  public:
    
    static auto main() {
      console::write_line(
        "This example of the bit_converter::is_big_endian field "
        "generates \nthe following output when run on "
        "x86-class computers.\n");
      console::write_line("is_big_endian:  {}",
        bit_converter::is_big_endian);
    }
  };
}
 
startup_(bit_converter_is_big_endian_example::program::main);
 
 
 
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.hpp:175
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10