string Name { get; set; }

robot_2Generated
code_blocksInput

Description

The Name property of the MapClassVariable class represents the internal name of the variable. This name is used internally within the system to identify the variable uniquely.

Usage

To access or modify the internal name of a MapClassVariable instance, use the Name property. This property is a string and can be both read and set.

Example

// Example of using the Name property

// Create an instance of MapClassVariable
MapClassVariable mapVar = new MapClassVariable();

// Set the internal name
mapVar.Name = "InternalVariableName";

// Get the internal name
string internalName = mapVar.Name;

// Output the internal name
// Note: Avoid using Console.WriteLine in s&box
// Instead, use appropriate logging or UI display methods
// Example: Log.Info(internalName);