GetDrives() 공개 정적인 메소드

public static GetDrives ( ) : System.IO.DriveInfo[]
리턴 System.IO.DriveInfo[]
예제 #1
0
 public IReadOnlyList <DriveInfo> GetMountedDrives() =>
 IoDriveInfo
 .GetDrives()
 .Select(CreateFrom)
 .WhereNotNull()
 .ToArray();