GitCommands.GitCommands.FixPath C# (CSharp) 메소드

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

private static FixPath ( string path ) : string
path string
리턴 string
        private static string FixPath(string path)
        {
            path = path.Trim();

            return path.StartsWith("\\\\") ? path : path.Replace('\\', '/');
        }
GitCommands