GetCurrentDirectory() public abstract method

public abstract GetCurrentDirectory ( ) : string
return string
コード例 #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());
 }
コード例 #2
0
ファイル: Directory.cs プロジェクト: zebmason/corefx
 public static string GetCurrentDirectory()
 {
     return(FileSystem.GetCurrentDirectory());
 }