BetterExplorer.MainWindow.GetDriveLetterFromDrivePath C# (CSharp) Method

GetDriveLetterFromDrivePath() private method

private GetDriveLetterFromDrivePath ( string path ) : char
path string
return char
    private char GetDriveLetterFromDrivePath(string path) => path.Substring(0, 1).ToCharArray()[0];
MainWindow