Removes all variables from global storage


SYNTAX

public static void RemoveAll ()



RETURN

void



EXAMPLE

using System;
using System.Text;
using PTLRuntime.NETScript;

namespace GlobalVariablesManager
{
     public class GlobalVariablesManager : NETIndicator
     {
         public override void Init()
         {      
             GlobalVariablesManager.RemoveAll();     
  
             if(GlobalVariablesManager.Count()==0)
             {
                 Print("Your session does not have any global variables");
             }
         }
     }
}