Ejemplo n.º 1
0
 protected internal string[] ForGetLinkedTextParameterActions()
 {
     if (this.ParameterActions == null)
     {
         return(new string[0]);
     }
     string[] array = new string[this.ParameterActions.Length];
     for (int i = 0; i < this.ParameterActions.Length; i++)
     {
         LogicAction logicAction = this.ParameterActions[i];
         if (logicAction != null)
         {
             array[i] = string.Format("<!<!{0} v {1}!>!>", i.ToString(), logicAction.ToString());
         }
         else
         {
             array[i] = string.Format("<!<!{0} v null!>!>", i.ToString());
         }
     }
     return(array);
 }
Ejemplo n.º 2
0
 protected internal string[] ForToStringParameterActions()
 {
     if (this.ParameterActions == null)
     {
         return(new string[0]);
     }
     string[] array = new string[this.ParameterActions.Length];
     for (int i = 0; i < this.ParameterActions.Length; i++)
     {
         LogicAction logicAction = this.ParameterActions[i];
         if (logicAction != null)
         {
             string[] array2;
             IntPtr   intPtr;
             (array2 = array)[(int)(intPtr = (IntPtr)i)] = array2[(int)intPtr] + logicAction.ToString();
         }
         else
         {
             array[i] = "null";
         }
     }
     return(array);
 }