[C#/SILVERLIGHT] IsolatedStorageFile 클래스 : 격리된 저장소 사용하기


■ IsolatedStorageFile 클래스를 사용해 격리된 저장소를 사용하는 방법을 보여준다.
————————————————————————————————————————
using System.IO.IsolatedStorage;

IsolatedStorageFile isolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication();
————————————————————————————————————————