0

我正在关注本教程,但我被困在 TwitterAcces 类(包含 twitter 令牌)被序列化的部分。这是调用序列化方法的地方:

    void CallBackVerifiedResponse(OAuthAccessToken at, TwitterResponse response)
    {
        if (at != null)
        {
            SerializeHelper.SaveSetting<TwitterAccess>("TwitterAccess", new TwitterAccess
            {
                AccessToken = at.Token,
                AccessTokenSecret = at.TokenSecret,
                ScreenName = at.ScreenName,
                UserId = at.UserId.ToString()
            });
        }
    }

这是我的 SerializeHelper.cs:

public class SerializeHelper
{
    public static void SaveSetting<T>(string fileName, T dataToSave)
    {
        using (var store = IsolatedStorageFile.GetUserStoreForApplication())
        {
            try
            {
                using (var stream = store.CreateFile(fileName))
                {
                    var serializer = new DataContractSerializer(typeof(T));
                    serializer.WriteObject(stream, dataToSave);
                }
            }
            catch (Exception e)
            {
                MessageBox.Show(e.Message);
                return;
            }
        }
    }

}

我得到的错误是:The type or namespace name 'DataContractSerializer' could not be found (are you missing a using directive or an assembly reference?)Visual Studio 无法帮助我解决问题。它建议创建一个新类。我四处搜索,我认为该类应该在System.Runtime.Serialization;我正在使用的里面,但这并不能解决问题。

4

1 回答 1

3

您必须在项目中添加System.Runtime.Serialization.dll引用。

于 2012-06-19T21:09:55.500 回答