I'm trying to save some settings related data on my Windows Forms application using IsolatedStorageSettings. But as soon as I create an instance of that class, I have an error saying that IsolatedStorageSettings does not exists on the namespace. This is my code :
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Windows;
using System.IO.IsolatedStorage;
namespace HangedGame
{
public partial class Form1 : Form
{
string word;
string foundWord;
int count;
private System.IO.IsolatedStorage.IsolatedStorageSettings appSettings =
IsolatedStorageSettings.ApplicationSettings;
}
}
What is wrong whit it?