string Name { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The Name property of the MapClassVariable class represents the internal name of the variable. This property is used to uniquely identify the variable within the system and is typically not intended for display in user interfaces.

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 written to.

Example

// Example of setting and getting the Name property of a MapClassVariable instance

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

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

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

// Output the internal name
// Note: Avoid using Console.WriteLine in s&box
// Instead, use appropriate logging or debugging tools
// Debug.Log(internalName);