Alquimiaware.NuGetUnity.Tests.FileSystemPackageProviderTests.ValidSource.AreEquivalentPaths C# (CSharp) 메소드

AreEquivalentPaths() 개인적인 정적인 메소드

private static AreEquivalentPaths ( string pathA, string pathB ) : bool
pathA string
pathB string
리턴 bool
            private static bool AreEquivalentPaths(string pathA, string pathB)
            {
                return string.Equals(
                    Path.GetFullPath(pathA),
                    Path.GetFullPath(pathB),
                    StringComparison.OrdinalIgnoreCase);
            }