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.
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.
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 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);