■ PathIO 클래스의 ReadTextAsync 정적 메소드를 사용해 텍스트 파일을 읽는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using Windows.Storage; string text = await PathIO.ReadTextAsync("ms-appdata:///local/sample.txt"); |
■ PathIO 클래스의 ReadTextAsync 정적 메소드를 사용해 텍스트 파일을 읽는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using Windows.Storage; string text = await PathIO.ReadTextAsync("ms-appdata:///local/sample.txt"); |