Endjin.Assembly.ChangeDetection.Introspection.PdbInformationReader.PatchDriveLetter C# (CSharp) Method

PatchDriveLetter() private method

private PatchDriveLetter ( string url ) : string
url string
return string
        private string PatchDriveLetter(string url)
        {
            string root = Directory.GetDirectoryRoot(Directory.GetCurrentDirectory());
            StringBuilder sb = new StringBuilder(url);
            sb[0] = root[0];
            return sb.ToString();
        }
    }