Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.61 KB

default-namespace.md

File metadata and controls

50 lines (38 loc) · 1.61 KB
descriptiontitlems.datems.assetid
Learn more about: default namespace
default namespace
12/30/2016
4712e9dc-57ba-43cc-811e-022e1dae4de8

default namespace

The default namespace scopes the built-in types that are supported by C++/CX.

Syntax

namespace default; 

Members

All built-in types inherit the following members.

NameDescription
default::(type_name)::EqualsDetermines whether the specified object is equal to the current object.
default::(type_name)::GetHashCodeReturns the hash code for this instance.
default::(type_name)::GetTypeReturns a string that represents the current type.
default::(type_name)::ToStringReturns a string that represents the current type.

Built-in types

NameDescription
char16A 16-bit nonnumeric value that represents a Unicode (UTF-16) code point.
float32A 32-bit IEEE 754 floating-point number.
float64A 64-bit IEEE 754 floating-point number.
int16A 16-bit signed integer.
int32A 32-bit signed integer.
int64A 64-bit signed integer.
int8An 8-bit signed numeric value.
uint16A 16-bit unsigned integer.
uint32A 32-bit unsigned integer.
uint64A 64-bit unsigned integer.
uint8An 8-bit unsigned numeric value.

Requirements

Header: vccorlib.h

See also

C++/CX Language Reference

close