GetLogicalDrives() public abstract method

public abstract GetLogicalDrives ( ) : string[]
return string[]
Example #1
0
 public override string[] GetLogicalDrives()
 {
     // This API is always blocked on WinRT, don't use Win32
     return(_winRTFileSystem.GetLogicalDrives());
 }
Example #2
0
 public static string[] GetLogicalDrives()
 {
     return(FileSystem.GetLogicalDrives());
 }