Table of Contents

Method Clear

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

Clear()

Clears the script memory.

public void Clear()

Examples

ScriptMemory memory = engine.GetMemory("memory");
if(memory != null)
{
	memory.Clear();
}