Endjin.Assembly.ChangeDetection.Introspection.PdbInformationReader.PatchDriveLetter C# (CSharp) Méthode

PatchDriveLetter() private méthode

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