5#define __XTD_CORE_INTERNAL__ 
    7#undef __XTD_CORE_INTERNAL__ 
   27  string to_ustring(
int val);
 
   31  string to_ustring(
unsigned val);
 
   35  string to_ustring(
long val);
 
   39  string to_ustring(
unsigned long val);
 
   43  string to_ustring(
long long val);
 
   47  string to_ustring(
unsigned long long val);
 
   51  string to_ustring(
float val);
 
   55  string to_ustring(
double val);
 
   59  string to_ustring(
long double val);
 
   63  template <
typename type_t>
 
   64  string to_ustring(type_t val) {
 
Contains string definitions.
 
Contains xtd::basic_string class.
 
Represents text as a sequence of character units.
Definition basic_string.hpp:79
 
basic_string< char > to_string() const noexcept override
Converts the value of this instance to a xtd::basic_string <char>.
Definition basic_string.hpp:1919
 
xtd::basic_string< char > string
Represents text as a sequence of UTF-8 code units.
Definition __string_definitions.hpp:43
 
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition to_string.hpp:41
 
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10