Exemplo n.º 1
0
 /// <summary>
 /// Super simple
 /// </summary>
 public string[] GetVariableNames()
 {
     try
     {
         using (var client = new Service.DebugInterface())
         {
             client.Url = Url;
             return(client.GetVariableNames());
         }
     }
     catch (Exception)
     {
         return(noValuesArray);
     }
 }