YAXLib.StringUtils.IsSingleLocationGeneric C# (CSharp) 메소드

IsSingleLocationGeneric() 공개 정적인 메소드

Determines whether the specified location string is either "." or "..".
public static IsSingleLocationGeneric ( string location ) : bool
location string The location string to check.
리턴 bool
        public static bool IsSingleLocationGeneric(string location)
        {
            return location == "." || location == "..";
        }