GetCurrentDirectory() 공개 추상적인 메소드

public abstract GetCurrentDirectory ( ) : string
리턴 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
 public static string GetCurrentDirectory()
 {
     return(FileSystem.GetCurrentDirectory());
 }