I have the following validation, currently checking if is null or not, how to also check if the value is int or not. If teh value is not int, i want to skip it.
Thanks a lot for the helpful info.
if (!String.IsNullOrEmpty(rentensionID))
{
retensionid = new int?(int.Parse(rentensionID));
}
Go to the complete details ...