■ IsolatedStorageSettings 클래스를 사용해 설정을 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using System.IO.IsolatedStorage; IsolatedStorageSettings.ApplicationSettings.Add("EMailAddress", "icodebroker@naver.com"); |
■ IsolatedStorageSettings 클래스를 사용해 설정을 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 |
using System.IO.IsolatedStorage; IsolatedStorageSettings.ApplicationSettings.Add("EMailAddress", "icodebroker@naver.com"); |