Max Zhukov
Max Zhukov

Reputation: 897

Windows Phone: IsolatedStorageSettings in class library

I'm trying to create helper library for Windows Phone. So, I've created class library project, and I want to write helpers for IsolatedStorageSettings. But class library can find only IsolatedStorageFile. Is there a way to work with IsolatedStorageSettings from class library? Thanks a lot!

Upvotes: 0

Views: 111

Answers (1)

user1228
user1228

Reputation:

You need to reference System.Windows.dll, where IsolatedStorageSettings is defined.

Whenever you need to use a class in the framework and you don't know where it is, simply go to the docs and look at the top...

Inheritance Hierarchy
System.Object
System.IO.IsolatedStorage.IsolatedStorageSettings
Namespace: System.IO.IsolatedStorage
Assembly: System.Windows (in System.Windows.dll)

Upvotes: 1

Related Questions