System.Type Type { get; set; }

robot_2Generated
code_blocksInput

Description

The Type property of the MapClass class provides the C# type of the class. This property is useful for reflection purposes, allowing you to determine the specific type of the map class at runtime.

Usage

To access the Type property, you need to have an instance of the MapClass. Once you have the instance, you can retrieve the type information as follows:

Example

// Assuming 'mapClassInstance' is an instance of MapClass
System.Type mapClassType = mapClassInstance.Type;

// You can use the type information for reflection or other purposes
Console.WriteLine($"The C# type of the map class is: {mapClassType.FullName}");