AIMS_BD_IATI.Library.Parser.ParserIATIv2.locationPoint.GetLongitude C# (CSharp) 메소드

GetLongitude() 공개 메소드

public GetLongitude ( ) : double
리턴 double
        public double GetLongitude()
        {
            double lon = 0;
            double.TryParse(pos.Substring(pos.IndexOf(' ') + 1), out lon);
            return lon;
        }