AvalonStudio.Platforms.Platform.NormalizePath C# (CSharp) Method

NormalizePath() public static method

public static NormalizePath ( this path ) : string
path this
return string
        public static string NormalizePath(this string path)
        {
            string result = path.ToPlatformPath();

            DirectoryInfo info = new DirectoryInfo(result);

            result = info.FullName;

            return result;
        }