2

我目前有一个帮助类,我用它来混淆一个静态类,该类跟踪我正在开发的游戏中的高分。我在我的版本中使用 Eazfuscator,发现当我的分数被序列化时,抛出了这个异常:

ArgumentException 标识符“”不符合 CLS

有没有办法可以将我的高分列表存储在我的助手类中,并且在混淆后仍然能够对其进行序列化?

try
{
  GameHighScore highScoreHelper = new GameHighScore();
  highScoreHelper.CreateGameHighScore(highScore);

  XmlSerializer serializer = new XmlSerializer(typeof(GameHighScore));
  serializer.Serialize(stream, highScoreHelper);
}
catch(Exception e)
{
  Logger.LogError("Score.Save", e);
}

我的助手类:

  public class GameHighScore
  {
    
    public List<HighScoreStruct<string, int>> highScoreList;

    private HighScoreStruct<string, int> scoreListHelper;

    [XmlType(TypeName = "HighScore")]
    public struct HighScoreStruct<K, V>
    {
      public K Initials
      { get; set; }

      public V Score
      { get; set; }

      public HighScoreStruct(K initials, V score) : this() 
      {
        Initials = initials;
        Score = score;
      }
    }

    public GameHighScore()
    {
      highScoreList = new List<HighScoreStruct<string, int>>();
      scoreListHelper = new HighScoreStruct<string, int>();
    }

    public void CreateGameHighScore(List<KeyValuePair<string, int>> scoreList)
    {

      for (int i = 0; i < scoreList.Count; i++)
      {
        scoreListHelper = new HighScoreStruct<string, int>(scoreList[i].Key, scoreList[i].Value);
        highScoreList.Add(scoreListHelper);
      }
    }
  }
4

2 回答 2

2

尝试XmlElement在您的属性上使用该属性。

于 2012-03-20T17:06:38.527 回答
2

最好的解决方案是不要混淆任何类型的序列化所需的类。这样做您将获得 2 个好处:

  • 类不会使用奇怪的名称
  • 重新运行混淆不会为相同的类/字段生成新名称。

Most obfuscators allow to specify attributes that keep particular classes/methods non-obfuscated.

Otherwise - write your own serialization.

于 2012-03-20T17:06:39.687 回答