Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at pair::first_type (STL/CLR).
The type of the first wrapped value.
Syntax
typedef Value1 first_type;
Remarks
The type is a synonym for the template parameter Value1.
Example
// cliext_pair_first_type.cpp
// compile with: /clr
#include <cliext/utility>
int main()
{
cliext::pair<wchar_t, int> c1(L'x', 3);
System::Console::WriteLine("[{0}, {1}]", c1.first, c1.second);
cliext::pair<wchar_t, int>::first_type first_val = c1.first;
cliext::pair<wchar_t, int>::second_type second_val = c1.second;
System::Console::WriteLine("[{0}, {1}]", first_val, second_val);
return (0);
}
[x, 3]
Requirements
Header: <cliext/utility>
Namespace: cliext
See Also
pair (STL/CLR)
pair::first (STL/CLR)
pair::second (STL/CLR)
pair::second_type (STL/CLR)