default namespace

2 out of 3 rated this helpful - Rate this topic

The default namespace scopes the built-in types that are supported by Visual C++ component extensions (C++/CX).

namespace default;

All built-in types inherit the following members.

default::(type_name)::Equals Method

Determines whether the specified object is equal to the current object.

default::(type_name)::GetHashCode Method

Returns the hash code for this instance.

default::(type_name)::GetType Method

Returns a string that represents the current type.

default::(type_name)::ToString Method

Returns a string that represents the current type.

Hh441515.collapse_all(en-us,VS.110).gifBuilt-in types

Name

Description

char16

A 16-bit nonnumeric value that represents a Unicode (UTF-16) code point.

float32

A 32-bit IEEE 754 floating-point number.

float64

A 64-bit IEEE 754 floating-point number.

int16

A 16-bit signed integer.

int32

A 32-bit signed integer.

int64

A 64-bit signed integer.

int8

An 8-bit signed numeric value.

uint16

A 16-bit unsigned integer.

uint32

A 32-bit unsigned integer.

uint64

A 64-bit unsigned integer.

uint8

An 8-bit unsigned numeric value.

Header: vccorlib.h

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.