Is there a function to check if a given character is of some type?
Here are two none working functions. What is the best way to do the
check?

private Boolean isString(str _value)
{
  try
  {
    return (_value == Types::String);
  }
  catch
  {
    return false;
  }
 
  return true;

}

private Boolean isInteger(int _value)
{
  try
  {
    return (_value == Types::Integer);
  }
  catch
  {
    return false;
  }
 
  return true;

}





Yahoo! Groups Links

Reply via email to