struct

A structure of different variable types combined into a single variable. Can be used with functions to decrease their complexity by returning many values at once.


Example

struct Name
{
     string First;
     string Last;
};

See Also

Data Types