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

ParseLong() 공개 정적인 메소드

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

            return result;
        }

Same methods

FlexibleParser::ParseLong ( string s, long defaultValue ) : long