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);
}
#TranslatefomCtovisualcobol
#VisualCOBOL
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);
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.