GetCurrentDirectory() public abstract method

public abstract GetCurrentDirectory ( ) : string
return string
Ejemplo n.º 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());
 }
Ejemplo n.º 2
0
 public static string GetCurrentDirectory()
 {
     return(FileSystem.GetCurrentDirectory());
 }