1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00

Add missing keys count and values count in throwing exception

This commit is contained in:
Insthync 2021-07-28 03:09:07 +07:00
parent 286b9a167a
commit e09c60a702

View File

@ -226,7 +226,7 @@ namespace XNode {
this.Clear();
if (keys.Count != values.Count)
throw new System.Exception(string.Format("there are {0} keys and {1} values after deserialization. Make sure that both key and value types are serializable."));
throw new System.Exception(string.Format("there are {0} keys and {1} values after deserialization. Make sure that both key and value types are serializable.", keys.Count, values.Count));
for (int i = 0; i < keys.Count; i++)
this.Add(keys[i], values[i]);