Ejemplo n.º 1
0
 private String getSubstring(NInteger from, int to)
 {
     if (from == null)
     {
         return(null);
     }
     if (from.asInt() == to)
     {
         return(null);
     }
     return(_queryString.Substring(from, to));
 }
        }         // constructor

        public static int ValueOf(NInteger value_arg)
        {
            return(value_arg.asInt());
        }     // ValueOf()