Is there a way in visual cobol to do the following?
public Boolean CheckIsInt (string passedString, out Int32 returnedInt)
{
return Int32.TryParse(passedString, out returnedInt);
}
Is there a way in visual cobol to do the following?
public Boolean CheckIsInt (string passedString, out Int32 returnedInt)
{
return Int32.TryParse(passedString, out returnedInt);
}