gov.va.medora.mdo.dao.vista.VistaSocSecNum.isValidAreaNumberException C# (CSharp) Method

isValidAreaNumberException() static private method

static private isValidAreaNumberException ( string value ) : bool
value string
return bool
        internal static bool isValidAreaNumberException(string value)
        {
            for (int i = 0; i < VALID_AREA_NUMBER_EXCEPTIONS.Length; i++)
            {
                if (value == VALID_AREA_NUMBER_EXCEPTIONS[i])
                {
                    return true;
                }
            }
            return false;
        }