2012-11-16 3 views

답변

5

는 가장 쉬운 방법은 사용하는 것입니다 IsolatedStorageSettings.ApplicationSettings :

// Store the value 
IsolatedStorageSettings.ApplicationSettings["Whatever"] = yourValue; 

// Retrieve it 
yourValue = (int)IsolatedStorageSettings.ApplicationSettings["Whatever"]; 
관련 문제