Search notes:

PowerShell: data types

Each PowerShell value has a type.
There are two categories of types:
Special types are:
Value types:
Reference types:
generic types (which problably would be template types in C++).
description types to describe
The type of a variable can be determined with getType():
$foo = 42
$foo.getType()

See also

Type conversions
The -is operator checks if a value is of a given type.
The -as operator casts a value into a different type.
Creating user-defined types with the class keyword.
Byte arrays
Type accelerators

Index