Fan.Sys.DateTimeStr.parseReqDigit C# (CSharp) Méthode

parseReqDigit() private méthode

private parseReqDigit ( ) : int
Résultat int
        private int parseReqDigit()
        {
            int ch = str[pos++];
              if ('0' <= ch && ch <= '9') return ch - '0';
              throw new Exception();
        }