GetCurrentDirectory() public abstract méthode

public abstract GetCurrentDirectory ( ) : string
Résultat string
Exemple #1
0
 public override string GetCurrentDirectory()
 {
     // WinRT honors the Win32 current directory, but does not expose it,
     // so we use the Win32 implementation always.
     return(_win32FileSystem.GetCurrentDirectory());
 }
Exemple #2
0
 public static string GetCurrentDirectory()
 {
     return(FileSystem.GetCurrentDirectory());
 }