int Order { get; set; }

robot_2Generated
code_blocksInput

Description

The Order property of the TypeDescription class represents the order in which this type should be processed or displayed. It is an integer value that can be used to sort or prioritize types within a collection or list.

Usage

Use the Order property to determine the sequence of types when iterating over a collection of TypeDescription objects. This can be particularly useful when you need to display types in a specific order or when processing them in a prioritized manner.

Example

// Example of accessing the Order property
TypeDescription typeDescription = new TypeDescription();
int order = typeDescription.Order;

// Use the order value to sort or prioritize
Console.WriteLine($"The order of this type is: {order}");