AcTools.Utils.Helpers.FlexibleParser.ParseTime C# (CSharp) 메소드

ParseTime() 공개 정적인 메소드

Throws an exception if can’t parse!
public static ParseTime ( string s ) : int
s string
리턴 int
        public static int ParseTime(string s) {
            int result;
            if (!TryParseTime(s, out result)) {
                throw new FormatException();
            }

            return result;
        }

Same methods

FlexibleParser::ParseTime ( string s, int defaultValue ) : int